From 0b8b0814ad31fa70ebf716a9d1c04a84a3c75e1e Mon Sep 17 00:00:00 2001 From: D <85412836+dafydddev@users.noreply.github.com> Date: Fri, 10 Apr 2026 10:51:49 +0100 Subject: [PATCH] Fix comment syntax for simulated error example --- src/content/7/en/part7d.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/7/en/part7d.md b/src/content/7/en/part7d.md index e5e7a638728..cf8226ac73d 100644 --- a/src/content/7/en/part7d.md +++ b/src/content/7/en/part7d.md @@ -49,7 +49,7 @@ You can simulate a rendering error by temporarily throwing an exception inside o ```js const BlogList = ({ blogs }) => { - throw new Error('simulated error') /*/ highlight line + throw new Error('simulated error') // highlight line return ( // ... )