From 94ff417e1f95c7f88047affb3c9ac526614b24a3 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Tue, 4 Oct 2022 08:55:25 +0100 Subject: [PATCH] fix line highlight --- docs/guide/reactivity.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/reactivity.md b/docs/guide/reactivity.md index e414423c9..73edf48cb 100644 --- a/docs/guide/reactivity.md +++ b/docs/guide/reactivity.md @@ -200,7 +200,7 @@ The following example uses a computed attribute. It displays three inputs for th === "computed01.py" - ```python hl_lines="12-18 30 32" + ```python hl_lines="25-26 28-29" --8<-- "docs/examples/guide/reactivity/computed01.py" ```