From fa66af91f388d096f1bea7275f2c9c835ed3b19b Mon Sep 17 00:00:00 2001 From: chen wen jun Date: Tue, 9 Jul 2024 15:27:01 +0800 Subject: [PATCH] docs: reorder symbols (#2296) * docs: reorder symbols * Update packages/docs/guide/essentials/route-matching-syntax.md --------- Co-authored-by: Eduardo San Martin Morote --- packages/docs/guide/essentials/route-matching-syntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docs/guide/essentials/route-matching-syntax.md b/packages/docs/guide/essentials/route-matching-syntax.md index 52f8812a7..e110f8f5b 100644 --- a/packages/docs/guide/essentials/route-matching-syntax.md +++ b/packages/docs/guide/essentials/route-matching-syntax.md @@ -24,7 +24,7 @@ const routes = [ ] ``` -But in some scenarios we don't want to add that static section `/o`/`p`. However, `orderId` is always a number while `productName` can be anything, so we can specify a custom regex for a param in parentheses: +But in some scenarios, we don't want to add that static section `/o` or `/p`. However, `orderId` is always a number while `productName` can be anything so we can specify a custom regex for a param in parentheses: ```js const routes = [