From 59aa674569136bbdb5ce8381d1ec71803e27cc23 Mon Sep 17 00:00:00 2001 From: Christopher Olah Date: Thu, 12 Aug 2021 21:24:53 -0700 Subject: [PATCH] Update site/content/tutorial/02-reactivity/05-reactivity-and-functions/text.md Co-authored-by: Howard Chiam --- .../tutorial/02-reactivity/05-reactivity-and-functions/text.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/tutorial/02-reactivity/05-reactivity-and-functions/text.md b/site/content/tutorial/02-reactivity/05-reactivity-and-functions/text.md index d9e1096cc8..cf0729e04f 100644 --- a/site/content/tutorial/02-reactivity/05-reactivity-and-functions/text.md +++ b/site/content/tutorial/02-reactivity/05-reactivity-and-functions/text.md @@ -13,7 +13,7 @@ let k = 1; $: y = (x*x+k) * (x*x+k) - k; ``` -And want to abstract perhaps it's natural to think of there as being a function `f(x)` with `k` as a global variable: +And you want to abstract it. Perhaps it's natural to think of there being a function `f(x)` with `k` as a global variable: ```js let x = 0;