diff --git a/exercises/concept/tim-from-marketing/.docs/introduction.md b/exercises/concept/tim-from-marketing/.docs/introduction.md index e7aa8ef723..a1d595fe25 100644 --- a/exercises/concept/tim-from-marketing/.docs/introduction.md +++ b/exercises/concept/tim-from-marketing/.docs/introduction.md @@ -61,10 +61,10 @@ The `??` operator allows one to return a default value when the value is `null`: ```csharp string? name1 = "John"; -name1 ?? "Paul"; // => "John" +name1 ??= "Paul"; // => "John" string? name2 = null; -name2 ?? "George"; // => "George" +name2 ??= "George"; // => "George" ``` The `?.` operator allows one to call members safely on a possibly `null` value: