Skip to content

Commit 89d9827

Browse files
committed
change gloabal to global in exercise2
1 parent b7df9c5 commit 89d9827

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lesson06/Exercise02/exercise02_solution.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@
718718
],
719719
"source": [
720720
"# plotting the global population density change and the one for Japan \n",
721-
"plot = figure(title='Gloabal Mean Population Density compared to Japan', x_axis_label='Year', y_axis_label='Population Density')\n",
721+
"plot = figure(title='Global Mean Population Density compared to Japan', x_axis_label='Year', y_axis_label='Population Density')\n",
722722
"\n",
723723
"plot.line(years, mean_pop_vals, line_width=2, legend='Global Mean')\n",
724724
"plot.cross(years, jp_vals, legend='Japan', line_color='red')\n",
@@ -865,7 +865,7 @@
865865
"# creating the plot object\n",
866866
"title = Title(\n",
867867
" align = 'left',\n",
868-
" text = 'Gloabal Mean Population Density compared to Japan'\n",
868+
" text = 'Global Mean Population Density compared to Japan'\n",
869869
")\n",
870870
"\n",
871871
"plot = Plot(\n",
@@ -1081,7 +1081,7 @@
10811081
"source": [
10821082
"# creating the legend\n",
10831083
"legend_items= [\n",
1084-
" LegendItem(label='Gloabal Mean', renderers=[line_renderer]),\n",
1084+
" LegendItem(label='Global Mean', renderers=[line_renderer]),\n",
10851085
" LegendItem(label='Japan', renderers=[cross_renderer])\n",
10861086
"]\n",
10871087
"\n",

0 commit comments

Comments
 (0)