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 ( // ... )