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

fixed typos in docs #1282

Merged
merged 2 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ There are mainly 2 concepts to know about (defined in
* A `Game` object contains the high level description for a game (e.g. whether
it is simultaneous or sequential, the number of players, the maximum and
minimum scores).
* A `State`, which describe a specifics point (e.g. a specific board position
* A `State`, which describes a specific point (e.g. a specific board position
in chess, a specific set of player cards, public cards and past bets in
Poker) within a trajectory.

Expand Down
4 changes: 2 additions & 2 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ In a nutshell:
export PYTHONPATH=$PYTHONPATH:/<path_to_open_spiel>/build/python
```

to `./venv/bin/activate` or your `~/.bashrc` to be able to import OpenSpiel
add it to `./venv/bin/activate` or your `~/.bashrc` to be able to import OpenSpiel
from anywhere.

To make sure OpenSpiel works on the default configurations, we do use the
Expand Down Expand Up @@ -320,7 +320,7 @@ rest) from any location, you will need to add to your PYTHONPATH the root
directory and the `open_spiel` directory.

When using a virtualenv, the following should be added to
`<virtualenv>/bin/activate`. For a system-wide install, ddd it in your `.bashrc`
`<virtualenv>/bin/activate`. For a system-wide install, add it in your `.bashrc`
or `.profile`.

```bash
Expand Down
Loading