From 2013db23d3d75dc9a50caebe5a07d793d4fd8258 Mon Sep 17 00:00:00 2001 From: Ben Alpert Date: Sat, 15 Feb 2014 13:58:57 -0800 Subject: [PATCH] Fix comma splice --- src/vendor/core/invariant.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vendor/core/invariant.js b/src/vendor/core/invariant.js index 9ce7d706c8..5cd1010041 100644 --- a/src/vendor/core/invariant.js +++ b/src/vendor/core/invariant.js @@ -30,7 +30,7 @@ function invariant(condition) { if (!condition) { var error = new Error( - 'Minified exception occured, use the non-minified dev environment for ' + + 'Minified exception occured; use the non-minified dev environment for ' + 'the full error message and additional helpful warnings.' ); error.framesToPop = 1;