Skip to content

Commit a1e3686

Browse files
authored
Merge pull request #1215 from nik-ahuja/master
minor typos corrected in examples/Colormaps.ipynb
2 parents 60ae79c + 0a1ddd6 commit a1e3686

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

examples/Colormaps.ipynb

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
"outputs": [],
7070
"source": [
7171
"def my_color_function(feature):\n",
72-
" \"\"\"Maps low values to green and hugh values to red.\"\"\"\n",
72+
" \"\"\"Maps low values to green and high values to red.\"\"\"\n",
7373
" if unemployment_dict[feature['id']] > 6.5:\n",
7474
" return '#ff0000'\n",
7575
" else:\n",
@@ -119,7 +119,7 @@
119119
"source": [
120120
"## StepColormap\n",
121121
"\n",
122-
"But to help you define you colormap, we've embedded `StepColormap` in `folium.colormap`.\n",
122+
"But to help you define your colormap, we've embedded `StepColormap` in `folium.colormap`.\n",
123123
"\n",
124124
"You can simply define the colors you want, and the `index` (*thresholds*) that correspond."
125125
]
@@ -551,9 +551,7 @@
551551
{
552552
"cell_type": "code",
553553
"execution_count": 18,
554-
"metadata": {
555-
"scrolled": false
556-
},
554+
"metadata": {},
557555
"outputs": [
558556
{
559557
"data": {
@@ -1169,5 +1167,5 @@
11691167
}
11701168
},
11711169
"nbformat": 4,
1172-
"nbformat_minor": 1
1170+
"nbformat_minor": 4
11731171
}

0 commit comments

Comments
 (0)