From 82c6ff190f1f1abaac2d49925ab5868f6b008733 Mon Sep 17 00:00:00 2001 From: Johann Haaf Date: Mon, 1 Jul 2019 14:25:53 +0200 Subject: [PATCH] fix some typos --- text/0000-embroider-v2-package-format.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/text/0000-embroider-v2-package-format.md b/text/0000-embroider-v2-package-format.md index 40afb4ddd0..cf8e9a4c86 100644 --- a/text/0000-embroider-v2-package-format.md +++ b/text/0000-embroider-v2-package-format.md @@ -404,7 +404,7 @@ The Handlebars macros are: - macroMaybeAttrs - macroFailBuild -The difference in naming is because the JS macros get explicitly imported from `@ember/macros`, whereas the Handlebars macros do not, so they need an appropriate namespace prefix. (If we land template imports, I'm find with adjusting this RFC to make the names align.) +The difference in naming is because the JS macros get explicitly imported from `@ember/macros`, whereas the Handlebars macros do not, so they need an appropriate namespace prefix. (If we land template imports, I'm fine with adjusting this RFC to make the names align.) ### JavaScript Macro: importSync @@ -487,7 +487,7 @@ export default implementation; // =============== // Or compile down to this if OwnConfig contains { useNewVersion: false } let implementation -implementation = importSync("./new-component"); +implementation = importSync("./old-component"); export default implementation; ```