Skip to content

Commit

Permalink
Fix typo in API reference.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 472295803
Change-Id: Iad0b43220d69b3a72b5c0cd17faa23c3f21dc069
  • Loading branch information
lanctot committed Sep 6, 2022
1 parent 9fb6ff1 commit ff9beb9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/api_reference/game_new_initial_state.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,11 @@ games with chance events.
```python
import pyspiel

game = pyspiel.load_game("breakthrough")
game = pyspiel.load_game("hex")
state = game.new_initial_state()
print(state)

# Output
# . . . . . . . . . . .
# Output:
# . . . . . . . . . . .
# . . . . . . . . . . .
# . . . . . . . . . . .
Expand All @@ -30,4 +29,5 @@ print(state)
# . . . . . . . . . . .
# . . . . . . . . . . .
# . . . . . . . . . . .
# . . . . . . . . . . .
```

0 comments on commit ff9beb9

Please sign in to comment.