diff --git a/streamerbot/2.guide/11.csharp.md b/streamerbot/2.guide/11.csharp.md index 0e18e440..a42122bc 100644 --- a/streamerbot/2.guide/11.csharp.md +++ b/streamerbot/2.guide/11.csharp.md @@ -40,7 +40,7 @@ All C# actions have access to a Dictionary, `args`, containing the current argum ::callout{icon=i-mdi-lightbulb color=amber} In the event that the `args` Dictionary does not contain your key, a `KeyNotFound` exception will be thrown. - It is best practice to first check for a given key using `ContainsKey` or utlize `TryGetValue`, exampled below. -- `CPH.TryGetArg`{lang=cs} is available in v0.2.2+ +- `CPH.TryGetArg`{lang=cs} is available in v0.2.3+ :: ::code-group