Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/csharp/fundamentals/strings/interpolation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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":::

Expand Down
Loading