From a6987a936299d8acfc1c81aaff19cb1ce569fa6c Mon Sep 17 00:00:00 2001 From: JinHan2002 Date: Sun, 28 Apr 2019 11:43:29 -0500 Subject: [PATCH] Fixing a typo (#6626) 'lets' should be 'let's' --- docs/examples/custom-icons/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/custom-icons/index.md b/docs/examples/custom-icons/index.md index ef3a267d665..17dede21bbe 100644 --- a/docs/examples/custom-icons/index.md +++ b/docs/examples/custom-icons/index.md @@ -70,7 +70,7 @@ You may have noticed that we used the `new` keyword for creating LeafIcon instan return new L.Icon(options); }; -You can do the same with your classes too. OK, lets finally put some markers with these icons on the map: +You can do the same with your classes too. OK, let's finally put some markers with these icons on the map: L.marker([51.5, -0.09], {icon: greenIcon}).addTo(map).bindPopup("I am a green leaf."); L.marker([51.495, -0.083], {icon: redIcon}).addTo(map).bindPopup("I am a red leaf.");