Skip to content

Commit 454fc68

Browse files
committed
Fix typo
1 parent 20a78a8 commit 454fc68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

templates/new/client/Game.cs.tmpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public partial class Game : IDisposable
6161
/// <list type="bullet">
6262
/// <item>--public (Makes the created game public)</item>
6363
/// <item>--protected (Makes the created game protected.</item>
64-
/// <item>--spectate (Spectates the game instead of joining it. (the username is not neccessary if this flag is set)</item>
64+
/// <item>--spectate (Spectates the game instead of joining it. (the username is not necessary if this flag is set)</item>
6565
/// </list>
6666
/// </para>
6767
/// </summary>
@@ -79,7 +79,7 @@ public partial class Game : IDisposable
7979

8080
var publicFlag = new Option<bool>("--public", "Make the created game public.");
8181
var protectedFlag = new Option<bool>("--protected", "Make the created game protected.");
82-
var spectateFlag = new Option<bool>("--spectate", "Spectate the created/joined game. The username is not neccessary if this flag is set.");
82+
var spectateFlag = new Option<bool>("--spectate", "Spectate the created/joined game. The username is not necessary if this flag is set.");
8383

8484
var gameIdArg = new Argument<string>("game_id", "The ID of the game.");
8585
var usernameArg = new Argument<string>("username", () => "", "The username of the player.");

0 commit comments

Comments
 (0)