From 138ba985e898e8fb7db626b77810736e870268ca Mon Sep 17 00:00:00 2001 From: Bin <124781335@qq.com> Date: Wed, 15 Nov 2023 09:50:22 +0800 Subject: [PATCH] doc: modify semicolons to commas --- doc/options-reference.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/options-reference.md b/doc/options-reference.md index 1506e587c..6d7f453e9 100644 --- a/doc/options-reference.md +++ b/doc/options-reference.md @@ -59,7 +59,7 @@ As a single regular expression: ```javascript options: { includeOnly: { - path: "^bin|^src|^test|^packages"; + path: "^bin|^src|^test|^packages", } } ``` @@ -69,7 +69,7 @@ As an array of regular expressions: ```javascript options: { includeOnly: { - path: ["^bin", "^src", "^test", "^packages"]; + path: ["^bin", "^src", "^test", "^packages"], } } ``` @@ -78,7 +78,7 @@ Or in shorthand: ```javascript options: { - includeOnly: ["^bin", "^src", "^test", "^packages"]; + includeOnly: ["^bin", "^src", "^test", "^packages"], } ```