From 8a31584b823a01067ab7d0b3475c53eba70af608 Mon Sep 17 00:00:00 2001 From: Genevieve Warren <24882762+gewarren@users.noreply.github.com> Date: Tue, 30 Sep 2025 15:21:37 -0700 Subject: [PATCH] Update prompts/csharp-docs.prompt.md --- prompts/csharp-docs.prompt.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prompts/csharp-docs.prompt.md b/prompts/csharp-docs.prompt.md index 9f4bb71..5835361 100644 --- a/prompts/csharp-docs.prompt.md +++ b/prompts/csharp-docs.prompt.md @@ -48,7 +48,7 @@ description: 'Ensure that C# types are documented with XML comments and follow b - The `` should start with: - "Gets or sets..." for a read-write property. - "Gets..." for a read-only property. - - For properties that return a Boolean value, the summary should start with "Gets [or sets] a value that indicates whether...". + - "Gets [or sets] a value that indicates whether..." for properties that return a Boolean value. - Use `` to describe the value of the property. - The description should be a noun phrase that doesn't specify the data type. - If the property has a default value, add it in a separate sentence, for example, "The default is ``".