From 6ab255930d8d2970521af543b9c6aa32c8fd4cac Mon Sep 17 00:00:00 2001 From: lpmi-13 Date: Wed, 15 Aug 2018 22:40:05 +0100 Subject: [PATCH] fix simple typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c64764b..356b800 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ Specifically you will need to configure a layer type for each group of polygons ofp.LayerType('MyName', ‘my-class-name', [‘d3 selector string']); ``` -The first argument is just a name you pick, the second is a class name you also pick that is injected into the SVG to simplify future interactions (e.g. applying style changes with a class), then last one is the important one. That is a D3.js selector (similar to JQuery selectors) that selects the the SVG group tag () that has that id. +The first argument is just a name you pick, the second is a class name you also pick that is injected into the SVG to simplify future interactions (e.g. applying style changes with a class), then last one is the important one. That is a D3.js selector (similar to JQuery selectors) that selects the SVG group tag () that has that id. ----------------