Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in examples/simple-game-server/README.md #3398

Merged
merged 2 commits into from
Sep 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/simple-game-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ for UDP as an echo or "ACK TCP:<text content>" 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 |
Expand All @@ -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 |
Expand Down