From 200ec1e0c711c367c7b350d96c3c1717ab619492 Mon Sep 17 00:00:00 2001 From: Konrad Jamrozik Date: Thu, 2 Feb 2023 11:58:30 -0800 Subject: [PATCH] fix warn suggestion --- .../CodeOwnersParser/MatchedCodeownersEntry.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/code-owners-parser/CodeOwnersParser/MatchedCodeownersEntry.cs b/tools/code-owners-parser/CodeOwnersParser/MatchedCodeownersEntry.cs index 5bdc43e69de..53fe3bf2546 100644 --- a/tools/code-owners-parser/CodeOwnersParser/MatchedCodeownersEntry.cs +++ b/tools/code-owners-parser/CodeOwnersParser/MatchedCodeownersEntry.cs @@ -173,7 +173,7 @@ private static bool ContainsUnsupportedSequences(string codeownersPath) { Console.Error.WriteLine( $"CODEOWNERS path \"{codeownersPath}\" ends with " + - "unsupported sequence of \"/**/\". Replace it with \"/**\"."); + "unsupported sequence of \"/**/\". Replace it with \"/\"."); return true; }