From bccd292c42ab40d5d8705584b905b64d1c902aeb Mon Sep 17 00:00:00 2001 From: Lukas Gasselsberger Date: Fri, 17 Jul 2026 19:36:33 +0200 Subject: [PATCH] Fix small typo in parameters docs sample --- docs/02-fundamentals/06-parameters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02-fundamentals/06-parameters.md b/docs/02-fundamentals/06-parameters.md index 48a605b9b..012397a1c 100644 --- a/docs/02-fundamentals/06-parameters.md +++ b/docs/02-fundamentals/06-parameters.md @@ -15,7 +15,7 @@ readonly string MyParameter; You can set default values for parameters as you would normally do through field and property initializers. You can also use static [build base properties](04-builds.md#base-properties) like `IsLocalBuild` or `IsServerBuild` for environmental adjustments: ```csharp -[Parameters] +[Parameter] readonly Configuration Configuration = IsServerBuild ? Configuration.Release : Configuration.Debug;