From e506de5900685cb3cae72dc89ea6f9ff92ceaf45 Mon Sep 17 00:00:00 2001 From: Jake Clarke Date: Mon, 7 Dec 2020 20:34:03 +1100 Subject: [PATCH] DOC: Fixing a typo in "South America" (#1725) --- doc/source/docs/user_guide/set_operations.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/docs/user_guide/set_operations.rst b/doc/source/docs/user_guide/set_operations.rst index 676a25f..bb01c87 100644 --- a/doc/source/docs/user_guide/set_operations.rst +++ b/doc/source/docs/user_guide/set_operations.rst @@ -138,7 +138,7 @@ First, we load the countries and cities example datasets and select : world = geopandas.read_file(geopandas.datasets.get_path('naturalearth_lowres')) capitals = geopandas.read_file(geopandas.datasets.get_path('naturalearth_cities')) - # Select South Amarica and some columns + # Select South America and some columns countries = world[world['continent'] == "South America"] countries = countries[['geometry', 'name']]