From 907d4f356cd7af74da57862f6ab2e42aacb9dd84 Mon Sep 17 00:00:00 2001 From: Jan Suleiman Date: Tue, 19 Oct 2021 14:12:05 +0200 Subject: [PATCH] fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5487bae..d087a83 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ const parser = new MapfileParser(); // Load a Mapfile file const mapfile = fs.readFileSync('./mapfiles_folder/my_mapfile.map', 'utf8'); -const { options: geostylerStyle } = await parser.readStyle(mapfile); +const { output: geostylerStyle } = await parser.readStyle(mapfile); console.log(geostylerStyle); ```