From 1f06779eea3d2010be1fb42a148facaf7ebab313 Mon Sep 17 00:00:00 2001 From: okraska-kropidlowski <121766018+okraska-kropidlowski@users.noreply.github.com> Date: Tue, 18 Jul 2023 23:09:59 +0200 Subject: [PATCH] Update README.md Found a wrong method name in line 276 (was "city" instead of "country"). --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1c8f00c..f190adb 100644 --- a/README.md +++ b/README.md @@ -273,7 +273,7 @@ city = tkintermapview.convert_coordinates_to_city(51.5122057, -0.0994014) Convert decimal coords to country name: ```python -country = tkintermapview.convert_coordinates_to_city(51.5122057, -0.0994014) +country = tkintermapview.convert_coordinates_to_country(51.5122057, -0.0994014) # country: "United Kingdom" ```