correct return type in docstring of LatLngBounds.extend (#4430)

This commit is contained in:
Nathan Cahill 2016-04-15 01:30:21 -06:00 committed by Per Liedman
parent 70a208b088
commit 1964f35ea4

View File

@ -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,