From 9de48478464d22b2f84ead8ba07901195cf09c8d Mon Sep 17 00:00:00 2001 From: David Kassa Date: Mon, 23 Dec 2019 10:58:09 -0600 Subject: [PATCH] Change "from" to "in" Currently incorrectly says import "from App.svelte" instead of "in App.svelte" --- .../tutorial/17-module-context/02-module-exports/text.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/content/tutorial/17-module-context/02-module-exports/text.md b/site/content/tutorial/17-module-context/02-module-exports/text.md index d5b4b96621..ec8364da22 100644 --- a/site/content/tutorial/17-module-context/02-module-exports/text.md +++ b/site/content/tutorial/17-module-context/02-module-exports/text.md @@ -16,7 +16,7 @@ Anything exported from a `context="module"` script block becomes an export from ``` -...we can then import it from `App.svelte`... +...we can then import it in `App.svelte`... ```html