From 5ac8ba19a47abfad41bcfd02de7f51bbdf0ae156 Mon Sep 17 00:00:00 2001 From: Luca Date: Wed, 17 Jan 2018 19:43:59 +0100 Subject: [PATCH] Fix typo [skip ci] (#7229) --- packages/babel-traverse/src/path/context.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/babel-traverse/src/path/context.js b/packages/babel-traverse/src/path/context.js index 254b199166..a97045e10f 100644 --- a/packages/babel-traverse/src/path/context.js +++ b/packages/babel-traverse/src/path/context.js @@ -30,7 +30,7 @@ export function _call(fns?: Array): boolean { const ret = fn.call(this.state, this, this.state); if (ret && typeof ret === "object" && typeof ret.then === "function") { throw new Error( - `You appear to be using an plugin with an async traversay visitors, ` + + `You appear to be using a plugin with an async traversal visitor, ` + `which your current version of Babel does not support.` + `If you're using a published plugin, you may need to upgrade ` + `your @babel/core version.`,