From 4155590cd845379f63ece9a0abac1e0f43d4c958 Mon Sep 17 00:00:00 2001 From: Surya Gaddipati Date: Wed, 8 Apr 2015 18:00:03 -0500 Subject: [PATCH] Fix typo --- src/babel/transformation/file/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/babel/transformation/file/index.js b/src/babel/transformation/file/index.js index 56026f03d0..029173a2ed 100644 --- a/src/babel/transformation/file/index.js +++ b/src/babel/transformation/file/index.js @@ -267,7 +267,7 @@ export default class File { // validate Transformer instance if (!plugin.buildPass || plugin.constructor.name !== "Transformer") { - throw new TypeError(`Plugin ${JSON.stringify(name)} didn't export default a Transformer instance`); + throw new TypeError(`Plugin ${JSON.stringify(name)} didn't export a default Transformer instance`); } // build!