From 827a1bd7cc767a0e48c7ad48495774d512540622 Mon Sep 17 00:00:00 2001 From: Peter Robins Date: Wed, 10 Jul 2013 07:41:39 -0700 Subject: [PATCH] remove trailing comma --- Minimal-Vector-API.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minimal-Vector-API.md b/Minimal-Vector-API.md index c2972b0..a7ed22e 100644 --- a/Minimal-Vector-API.md +++ b/Minimal-Vector-API.md @@ -15,7 +15,7 @@ var layer = new ol.layer.Vector({ source: new ol.source.Vector({ url: 'http://example.com/data', projection: 'remote-proj', // this will typically come with the data - parser: new ol.parser.GeoJSON(), + parser: new ol.parser.GeoJSON() }) }); ```