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 variables.md #68

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 version1/variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ Variables are defined per-game and can be applicable to either all runs for this
full-game or individual-level (IL) runs. Variables can also be restricted to a category. It is
therefore important to understand how to get the correct set of variables:

* Use ``GET /game/<id>/variables`` to get **all** defined variables of that game, no matter how they
* Use ``GET /api/v1/games/<game id>/variables`` to get **all** defined variables of that game, no matter how they
are configured.
* Use ``GET /categories/<id>/variables`` to only get the variables that apply to the given category.
* Use ``GET /levels/<id>/variables`` to only get the variables that apply to the given level.
* Use ``GET /api/v1/categories/<category id>/variables`` to only get the variables that apply to the given category.
* Use ``GET /api/v1/levels/<level id>/variables`` to only get the variables that apply to the given level.

### Structure

Expand Down