From c4fc11b092e81a9722d3920fb052e048b8620ca3 Mon Sep 17 00:00:00 2001 From: Anders Sundheim Date: Fri, 4 Sep 2026 10:34:05 -0700 Subject: [PATCH] Update documentation for constant interpolated strings Clarifythat interpolated expressions must be constant strings for building constant interpolated strings, fix spacing between sentences. --- docs/csharp/fundamentals/strings/interpolation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/csharp/fundamentals/strings/interpolation.md b/docs/csharp/fundamentals/strings/interpolation.md index 749671cd60964..2dee3181e5121 100644 --- a/docs/csharp/fundamentals/strings/interpolation.md +++ b/docs/csharp/fundamentals/strings/interpolation.md @@ -77,7 +77,7 @@ For better readability, break long interpolation expressions across multiple lin ## Build constant strings -You can build constant interpolated strings when every interpolated expression is a constant value.That makes it usable for attribute arguments, `switch` patterns, and other contexts that require compile-time constants: +You can build constant interpolated strings when every interpolated expression is a constant `string` value. That makes it usable for attribute arguments, `switch` patterns, and other contexts that require compile-time constants: :::code language="csharp" source="snippets/interpolation/Program.cs" id="ConstantInterpolated":::