From 5ad4049dbdb01243ff1523788f8d82335728ee16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20Bona=C4=87i?= Date: Mon, 25 Jan 2016 20:11:42 +0100 Subject: [PATCH] Small correction: remove semicolon from the register array Browserify complains right away :) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 82b9f9aadc2..a8856e38ba0 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ var plotlyCore = require('plotly.js/lib/core'); // Load in the trace types for pie, and choropleth plotlyCore.register([ require('plotly.js/lib/pie'), - require('plotly.js/lib/choropleth'); + require('plotly.js/lib/choropleth') ]); module.exports = customPlotly;