]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
docs: typo (#2592) main
authorM.Sadeq Mosavar <79406740+msmosavar@users.noreply.github.com>
Tue, 16 Dec 2025 14:28:32 +0000 (17:58 +0330)
committerGitHub <noreply@github.com>
Tue, 16 Dec 2025 14:28:32 +0000 (15:28 +0100)
packages/docs/guide/essentials/route-matching-syntax.md

index e1455840a483a18728d5504f90e3c95e6263b8c2..cb8ce0c3ba488a0446c762ea481dab2bbe54198a 100644 (file)
@@ -46,7 +46,7 @@ Since the closing parentheses `)` is used to mark the end of a custom regex, you
 ```js
 const routes = [
   // note the escaped closing parentheses of the group within the regexp
-  { path: '/:custom(somethnig-(nested|other\\))' },
+  { path: '/:custom(something-(nested|other\\))' },
 ]
 ```