Skip to content

Commit 2724c9a

Browse files
author
rain
committed
docs: fix TypeScript shared table example
1 parent 8c7e897 commit 2724c9a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/docs/00200-core-concepts/00300-tables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,8 +409,8 @@ const playerColumns = {
409409
};
410410
411411
// Create two tables with the same schema
412-
const Player = table({ name: 'Player', public: true }, playerColumns);
413-
const LoggedOutPlayer = table({ name: 'LoggedOutPlayer' }, playerColumns);
412+
const player = table({ name: 'player', public: true }, playerColumns);
413+
const loggedOutPlayer = table({ name: 'logged_out_player' }, playerColumns);
414414
```
415415

416416
</TabItem>

0 commit comments

Comments
 (0)