From b6b31d4baf74702d38e47ea06b996d05d78a8b1e Mon Sep 17 00:00:00 2001 From: Mark Mandel Date: Thu, 21 Sep 2023 15:58:51 -0700 Subject: [PATCH] Fix type in examples/simple-game-server/README.md Fixed typo, and also cleaned up the table Markdown formatting. --- examples/simple-game-server/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/simple-game-server/README.md b/examples/simple-game-server/README.md index 6c5432d926..d94ed22b53 100644 --- a/examples/simple-game-server/README.md +++ b/examples/simple-game-server/README.md @@ -15,9 +15,9 @@ for UDP as an echo or "ACK TCP:" for TCP. There are some text commands you can send the server to affect its behavior: | Command | Behavior | -| ------------------- | ---------------------------------------------------------------------------------------- | +|---------------------|------------------------------------------------------------------------------------------| | "EXIT" | Causes the game server to exit cleanly calling `os.Exit(0)` | -| "UNHEATHY" | Stopping sending health checks | +| "UNHEALTHY" | Stopping sending health checks | | "GAMESERVER" | Sends back the game server name | | "READY" | Marks the server as Ready | | "ALLOCATE" | Allocates the game server | @@ -40,7 +40,7 @@ The server has a few configuration options that can be set via command line flags. Some can also be set using environment variables. | Flag | Environment Variable | Default | -| -------------------------------------- | -------------------- | ------- | +|----------------------------------------|----------------------|---------| | port | PORT | 7654 | | passthrough | PASSTHROUGH | false | | ready | READY | true |