Skip to content

Commit 66de3ab

Browse files
map changed to Map
1 parent f647fd1 commit 66de3ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/tutorial.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -388,13 +388,13 @@ Let's do the bootstrap test on the two categories.
388388
389389
Drawing Maps
390390
------------
391-
The main class in the maps module is the Map class. In this code we create a default map. Maps can be displayed or converted to html.
391+
The main class in the maps module is the Map class. In this code we create a default Map. Maps can be displayed or converted to html.
392392

393393
.. ipython:: python
394394
395395
from datascience.maps import Map # import the Map class
396-
default_map = Map() # generate a default map
397-
default_map.show() # display the map
396+
default_map = Map() # generate a default Map
397+
default_map.show() # display the Map
398398
399399
html = default_map.as_html() # generate the html
400400
with open('map.html', 'w') as f: # make a file to store the html

0 commit comments

Comments
 (0)