Skip to content

Commit 551b242

Browse files
authored
Fix typos with codespell (#1496)
1 parent 7f965d6 commit 551b242

14 files changed

+20
-20
lines changed

CHANGES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ Bug Fixes
244244
API changes
245245

246246
- Removed features `MarkerCluster` in lieu of the plugin version (ocefpaf #704)
247-
- `choropleth` now takes a single `geo_data` instad of `geo_path`/`geo_str`
247+
- `choropleth` now takes a single `geo_data` instead of `geo_path`/`geo_str`
248248
leaving the parsing to `GeoJSON`, remove the unused `data_out` option,
249249
add geopandas support (ocefpaf #702)
250250
- All popups are considered HTML text by default (ocefpaf #689)

examples/Colormaps.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
"cell_type": "markdown",
175175
"metadata": {},
176176
"source": [
177-
"If you specify no index, colors will be set uniformely."
177+
"If you specify no index, colors will be set uniformly."
178178
]
179179
},
180180
{
@@ -398,7 +398,7 @@
398398
"cell_type": "markdown",
399399
"metadata": {},
400400
"source": [
401-
"## Build-in\n",
401+
"## Built-in\n",
402402
"\n",
403403
"For convenience, we provide a (small) set of built-in linear colormaps, in `folium.colormap.linear`."
404404
]

examples/ContinuousWorld.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"m = folium.Map(world_copy_jump=False, no_wrap=False)\n",
3434
"\n",
3535
"folium.Marker(\n",
36-
" location=[0, 0], popup=\"I will disapear when moved outside the wrapped map domain.\"\n",
36+
" location=[0, 0], popup=\"I will disappear when moved outside the wrapped map domain.\"\n",
3737
").add_to(m)\n",
3838
"\n",
3939
"m"

examples/GeoJSON_and_choropleth.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@
456456
"cell_type": "markdown",
457457
"metadata": {},
458458
"source": [
459-
"We need also to convert the table into a dictionnary, in order to map a feature to it's unemployment value."
459+
"We need also to convert the table into a dictionary, in order to map a feature to it's unemployment value."
460460
]
461461
},
462462
{

examples/Geopandas_and_geo_interface.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@
175175
"source": [
176176
"Quite easy.\n",
177177
"\n",
178-
"Well, you can also take advantage of your `GeoDataFrame` structure to set the style of the data. For this, just create a column `style` containing each feature's style in a dictionnary."
178+
"Well, you can also take advantage of your `GeoDataFrame` structure to set the style of the data. For this, just create a column `style` containing each feature's style in a dictionary."
179179
]
180180
},
181181
{

examples/HeatMapWithTime.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"source": [
1414
"In this example we show the most basic usage of the HeatMapWithTime plugin.\n",
1515
"\n",
16-
"We generate a random set of points with lat/lon coordinates to draw on the map, and then move these points slowly in a random direction to simulate a time dimension. The points are aranged into a list of sets of data to draw."
16+
"We generate a random set of points with lat/lon coordinates to draw on the map, and then move these points slowly in a random direction to simulate a time dimension. The points are arranged into a list of sets of data to draw."
1717
]
1818
},
1919
{

examples/ImageOverlay.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
"cell_type": "markdown",
120120
"metadata": {},
121121
"source": [
122-
"This works exactly the same way if you want to put a JPG intead of a PNG."
122+
"This works exactly the same way if you want to put a JPG instead of a PNG."
123123
]
124124
},
125125
{
@@ -136,7 +136,7 @@
136136
"Now you may wish to create your own image, based on another python computation.\n",
137137
"For this, you'll need to have numpy installed on your machine.\n",
138138
"\n",
139-
"Let's creater an image to draw a rectangle in the bounds `[[0, -60], [60, 60]]`."
139+
"Let's create an image to draw a rectangle in the bounds `[[0, -60], [60, 60]]`."
140140
]
141141
},
142142
{
@@ -290,7 +290,7 @@
290290
"cell_type": "markdown",
291291
"metadata": {},
292292
"source": [
293-
"This time, the lines are properly positionned (at the precision of the array)."
293+
"This time, the lines are properly positioned (at the precision of the array)."
294294
]
295295
}
296296
],

examples/MiniMap.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"cell_type": "markdown",
4343
"metadata": {},
4444
"source": [
45-
"### Make the minimap collapsable"
45+
"### Make the minimap collapsible"
4646
]
4747
},
4848
{

examples/Plugins.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,7 @@
651651
"metadata": {},
652652
"source": [
653653
"## DualMap\n",
654-
"The DualMap plugin can be used to display two maps side by side, where panning and zooming is syncronized.\n",
654+
"The DualMap plugin can be used to display two maps side by side, where panning and zooming is synchronized.\n",
655655
"\n",
656656
"The `DualMap` class can be used just like the normal `Map` class. The two sub-maps can be accessed with its `m1` and `m2` attributes."
657657
]
@@ -736,7 +736,7 @@
736736
"\n",
737737
"plugins.LocateControl().add_to(m)\n",
738738
"\n",
739-
"# If you want get the user device positon after load the map, set auto_start=True\n",
739+
"# If you want get the user device position after load the map, set auto_start=True\n",
740740
"plugins.LocateControl(auto_start=True).add_to(m)\n",
741741
"\n",
742742
"m"

examples/Popups.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -990,7 +990,7 @@
990990
"cell_type": "markdown",
991991
"metadata": {},
992992
"source": [
993-
"Note that you can put another `Figure` into an `IFrame` ; this should let you do stange things..."
993+
"Note that you can put another `Figure` into an `IFrame` ; this should let you do strange things..."
994994
]
995995
},
996996
{

0 commit comments

Comments
 (0)