From: M.Sadeq Mosavar <79406740+msmosavar@users.noreply.github.com> Date: Tue, 16 Dec 2025 14:28:32 +0000 (+0330) Subject: docs: typo (#2592) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e9c3df4dd58a7ea6d2f196efc9238caef787bbe;p=thirdparty%2Fvuejs%2Frouter.git docs: typo (#2592) --- diff --git a/packages/docs/guide/essentials/route-matching-syntax.md b/packages/docs/guide/essentials/route-matching-syntax.md index e1455840..cb8ce0c3 100644 --- a/packages/docs/guide/essentials/route-matching-syntax.md +++ b/packages/docs/guide/essentials/route-matching-syntax.md @@ -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\\))' }, ] ```