Skip to content

Commit 65c597b

Browse files
authored
Merge pull request #432 from thetorpedodog/patch-1
<google-map-poly>: Fully specify LatLng type name.
2 parents 12c10af + fb793e7 commit 65c597b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

google-map-poly.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@
4949
* initially or when they are changed.
5050
*
5151
* @event google-map-poly-path-built
52-
* @param {google.maps.MVCArray.<LatLng>} path The poly path.
52+
* @param {google.maps.MVCArray.<google.maps.LatLng>} path The poly path.
5353
*/
5454

5555
/**
5656
* Fired when the user finishes adding vertices to the poly. The host component can use the
5757
* provided path to rebuild its list of points.
5858
*
5959
* @event google-map-poly-path-updated
60-
* @param {google.maps.MVCArray.<LatLng>} path The poly path.
60+
* @param {google.maps.MVCArray.<google.maps.LatLng>} path The poly path.
6161
*/
6262

6363
/**
@@ -159,7 +159,7 @@
159159
/**
160160
* An array of the Google Maps LatLng objects that define the poly shape.
161161
*
162-
* @type google.maps.MVCArray.<LatLng>
162+
* @type google.maps.MVCArray.<google.maps.LatLng>
163163
*/
164164
path: {
165165
type: Object,

0 commit comments

Comments
 (0)