From 21f98c658628a470065634b594ec5e24b14527e3 Mon Sep 17 00:00:00 2001 From: Tachibana Shin Date: Fri, 26 May 2023 05:54:00 +0700 Subject: [PATCH] Fix the syntax for browser examples in the README (#1975) Co-authored-by: Natalie Weizenbaum --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a47962e93..e25db58e6 100644 --- a/README.md +++ b/README.md @@ -145,7 +145,7 @@ well): .box { width: 10px + 15px; } - `); + `)); ``` @@ -171,7 +171,7 @@ Or from a CDN: .box { width: 10px + 15px; } - `); + `)); ``` @@ -185,7 +185,7 @@ Or even bundled with all its dependencies: .box { width: 10px + 15px; } - `); + `)); ```