From 8280388bbdd24d867174a616d3b261cc402e9bfa Mon Sep 17 00:00:00 2001 From: Simon Legner Date: Thu, 30 May 2019 12:51:08 +0200 Subject: [PATCH] doc: fix typo (missing _) --- src/Leaflet.VectorGrid.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Leaflet.VectorGrid.js b/src/Leaflet.VectorGrid.js index edc1920..5153ad7 100644 --- a/src/Leaflet.VectorGrid.js +++ b/src/Leaflet.VectorGrid.js @@ -260,7 +260,7 @@ L.VectorGrid = L.GridLayer.extend({ * * Classes inheriting from `VectorGrid` **must** define the `_getVectorTilePromise` private method. * - * 🍂method getVectorTilePromise(coords: Object): Promise + * 🍂method _getVectorTilePromise(coords: Object): Promise * Given a `coords` object in the form of `{x: Number, y: Number, z: Number}`, * this function must return a `Promise` for a vector tile. *