From b89500d8e0cefdb1f53c51ce2e00dfe32e955313 Mon Sep 17 00:00:00 2001 From: Chris Lorenzo Date: Wed, 31 May 2017 13:45:15 -0400 Subject: [PATCH] Fix comma in documentation --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7213861..fffd84d 100644 --- a/README.md +++ b/README.md @@ -51,8 +51,8 @@ import alias from 'rollup-plugin-alias'; rollup({ entry: './src/index.js', plugins: [alias({ - resolve: ['.jsx', '.js'] - foo: './bar', // Will check for ./bar.jsx and ./bar.js + resolve: ['.jsx', '.js'], + foo: './bar' // Will check for ./bar.jsx and ./bar.js })], }); ```