From 0a7cf0e73e386e46a692e06d540703c435d4d003 Mon Sep 17 00:00:00 2001 From: Josiah Nieves <23145687+jtn7@users.noreply.github.com> Date: Sun, 16 Oct 2022 22:45:03 -0400 Subject: [PATCH] [docs] fix typo "bellow" vs "below" (#7955) --- site/content/docs/02-component-format.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/docs/02-component-format.md b/site/content/docs/02-component-format.md index 5212b001ac..268444ab7d 100644 --- a/site/content/docs/02-component-format.md +++ b/site/content/docs/02-component-format.md @@ -209,7 +209,7 @@ It is important to note that the reactive blocks are ordered via simple static a ``` -Moving the line `$: yDependent = y` bellow `$: setY(x)` will cause `yDependent` to be updated when `x` is updated. +Moving the line `$: yDependent = y` below `$: setY(x)` will cause `yDependent` to be updated when `x` is updated. ---