Skip to content

Commit

Permalink
<google-map-poly>: Fully specify LatLng type name.
Browse files Browse the repository at this point in the history
In google-map-poly.html, the LatLng type name was incorrectly specified
without its namespace, leaving it technically as an unmatched type
at the top level.  This properly qualifies the name.
  • Loading branch information
paul fisher authored Nov 8, 2018
1 parent 12c10af commit fb793e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions google-map-poly.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@
* initially or when they are changed.
*
* @event google-map-poly-path-built
* @param {google.maps.MVCArray.<LatLng>} path The poly path.
* @param {google.maps.MVCArray.<google.maps.LatLng>} path The poly path.
*/

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

/**
Expand Down Expand Up @@ -159,7 +159,7 @@
/**
* An array of the Google Maps LatLng objects that define the poly shape.
*
* @type google.maps.MVCArray.<LatLng>
* @type google.maps.MVCArray.<google.maps.LatLng>
*/
path: {
type: Object,
Expand Down

0 comments on commit fb793e7

Please sign in to comment.