From a1c3be66e8f950e8b3ce66ffa323d8d7d74c9436 Mon Sep 17 00:00:00 2001 From: Sally McGrath Date: Fri, 17 Nov 2023 19:02:57 +0000 Subject: [PATCH] Update index.md testing a patch - it seems likely the highlight lines is wrong? --- content/js1/blocks/assertions/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/js1/blocks/assertions/index.md b/content/js1/blocks/assertions/index.md index 5a8e52009..b9dd831a8 100644 --- a/content/js1/blocks/assertions/index.md +++ b/content/js1/blocks/assertions/index.md @@ -139,7 +139,7 @@ So far we’ve only created assertions that check the function’s behaviour for Now we need to assert that the function behaves correctly when the time is later than midday. Let’s create an assertion for our function when passed an input of `"23:00"`: -```js {linenos=table,linenostart=1,hl_lines=["15-21"]} +```js {linenos=table,linenostart=1} function formatAs12HourClock(time) { return `${time} am`; }