From e400e13eca93dec8209d70ddc691579a7b2d9726 Mon Sep 17 00:00:00 2001 From: MountainGod2 <88257202+MountainGod2@users.noreply.github.com> Date: Mon, 23 Mar 2026 19:12:45 -0600 Subject: [PATCH] docs(configuration): fix closing punctuation for matches in examples Changed two instances of `matches = "sub/**`` to `matches = "sub/**"` to fix unterminated string errors --- website/docs/configuration.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/configuration.mdx b/website/docs/configuration.mdx index b37a703c0b..5e24b50319 100644 --- a/website/docs/configuration.mdx +++ b/website/docs/configuration.mdx @@ -1057,7 +1057,7 @@ assert-type = true [[sub-config]] # apply this config to all files in `sub` -matches = "sub/**` +matches = "sub/**" # disable `assert-type` errors in `sub` [sub-config.errors] @@ -1254,7 +1254,7 @@ assert-type = true [[tool.pyrefly.sub-config]] # apply this config to all files in `sub` -matches = "sub/**` +matches = "sub/**" # disable `assert-type` errors in `sub/project` [tool.pyrefly.sub-config.errors]