From 4a27b10e8a87eae1294f0cd7faa19bc03dfcb149 Mon Sep 17 00:00:00 2001 From: Sam Saccone Date: Wed, 1 Jul 2015 15:56:11 -0700 Subject: [PATCH] :baby: --- src/babel/messages.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/babel/messages.js b/src/babel/messages.js index 91381589e1..b2a53aac06 100644 --- a/src/babel/messages.js +++ b/src/babel/messages.js @@ -26,7 +26,7 @@ export const MESSAGES = { undeclaredVariableType: "Referencing a type alias outside of a type annotation", undeclaredVariableSuggestion: "Reference to undeclared variable $1 - did you mean $2?", - traverseNeedsParent: "Must pass a scope and parentPath unless traversing a Program/File got a $1 node", + traverseNeedsParent: "You must pass a scope and parentPath unless traversing a Program/File got a $1 node", traverseVerifyRootFunction: "You passed `traverse()` a function when it expected a visitor object, are you sure you didn't mean `{ enter: Function }`?", traverseVerifyVisitorProperty: "You passed `traverse()` a visitor object with the property $1 that has the invalid property $2", traverseVerifyNodeType: "You gave us a visitor for the node type $1 but it's not a valid type", @@ -37,7 +37,7 @@ export const MESSAGES = { pluginNotTransformer: "The plugin $1 didn't export a Plugin instance", pluginUnknown: "Unknown plugin $1", - pluginNotFile: "Plugin $1 is resolving to a different Babel version to what is doing the actual transformation..." + pluginNotFile: "Plugin $1 is resolving to a different Babel version than what is performing the transformation." }; export function get(key: String, ...args) {