Skip to content

Commit c3a123b

Browse files
authored
chore: fix typos found using "codespell" (#667)
1 parent a4e0eba commit c3a123b

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

docs/api-reference/components/static-map.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ A class name that will be attached to the `img` tag.
6060

6161
:::note
6262

63-
Some explanations and syntax migh differ slighty from the official documentation since the Google documentation focuses on building and URL which has
63+
Some explanations and syntax migh differ slightly from the official documentation since the Google documentation focuses on building and URL which has
6464
been abstracted here in the helper function for better developer experience
6565

6666
:::

docs/contributing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The default procedure for adding functionality to the library is as follows:
4040
- when implementing the desired feature is challenging or impossible with the
4141
library, that would be an excellent indicator that some abstraction is
4242
missing at a lower level and should be added to the library.
43-
- If a new feature proves to be useful and univeral (i.e. it can be used
43+
- If a new feature proves to be useful and universal (i.e. it can be used
4444
without needing much per-user customization), we will
4545
consider adding it to the library or providing it as a separate library.
4646

examples/advanced-marker-interaction/src/control-panel.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function ControlPanel(props: Props) {
1414
<p>
1515
Markers scale on hover and change their color when they are selected by
1616
clicking on them. The default z-index is sorted by latitude. The z-index
17-
hierachy is "hover" on top, then "selected" and then the default
17+
hierarchy is "hover" on top, then "selected" and then the default
1818
(latitude).
1919
</p>
2020
<p>

examples/autocomplete/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ When building your own you are completely free but also responsible for the user
1818

1919
### 3) Third Party Select Widget
2020

21-
This is basically the same as the custom build, except for not having to implement the list/dropdown/DOM handling yourself. A lot of third party text box widgets provide functionionality for handling keyboard navigation and focus handling. For the demo we used the [Combobox][combobox] from `react-widgets`.
21+
This is basically the same as the custom build, except for not having to implement the list/dropdown/DOM handling yourself. A lot of third party text box widgets provide functionality for handling keyboard navigation and focus handling. For the demo we used the [Combobox][combobox] from `react-widgets`.
2222

2323
## Google Maps Platform API Key
2424

examples/autocomplete/src/control-panel.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function ControlPanel({
1818

1919
<p>
2020
This example demonstrates three different methods of adding autocomplete
21-
functionality to your appplication using the Google Places API.
21+
functionality to your application using the Google Places API.
2222
</p>
2323

2424
<div className="autocomplete-mode">

examples/marker-clustering/src/control-panel.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const ControlPanel = ({
2222
<h3>Marker Clustering</h3>
2323
<p>
2424
This example uses the <code>@googlemaps/markerclusterer</code> library
25-
to demostrate how to render a large dataset of markers on the map.
25+
to demonstrate how to render a large dataset of markers on the map.
2626
</p>
2727
<p>
2828
This example also includes a filter function to show dynamic updating of

src/libraries/google-maps-api-loader.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export class GoogleMapsApiLoader {
9090
}
9191

9292
/**
93-
* Serialize the paramters used to load the library for easier comparison.
93+
* Serialize the parameters used to load the library for easier comparison.
9494
*/
9595
private static serializeParams(params: ApiParams): string {
9696
return [

0 commit comments

Comments
 (0)