correct return type in docstring of LatLngBounds.extend (#4430)
This commit is contained in:
parent
70a208b088
commit
1964f35ea4
@ -34,11 +34,11 @@ L.LatLngBounds = function (southWest, northEast) { // (LatLng, LatLng) or (LatLn
|
|||||||
|
|
||||||
L.LatLngBounds.prototype = {
|
L.LatLngBounds.prototype = {
|
||||||
|
|
||||||
// @method extend(latlng: LatLng)
|
// @method extend(latlng: LatLng): this
|
||||||
// Extend the bounds to contain the given point
|
// Extend the bounds to contain the given point
|
||||||
|
|
||||||
// @alternative
|
// @alternative
|
||||||
// @method extend(otherBounds: LatLngBounds)
|
// @method extend(otherBounds: LatLngBounds): this
|
||||||
// Extend the bounds to contain the given bounds
|
// Extend the bounds to contain the given bounds
|
||||||
extend: function (obj) {
|
extend: function (obj) {
|
||||||
var sw = this._southWest,
|
var sw = this._southWest,
|
||||||
|
Loading…
Reference in New Issue
Block a user