Skip to content
This repository has been archived by the owner on Mar 18, 2022. It is now read-only.

Commit

Permalink
docs: added missing comma in relations.md (typeorm#4739)
Browse files Browse the repository at this point in the history
  • Loading branch information
thezanke authored and pleerock committed Sep 13, 2019
1 parent 7808bba commit 81f4b43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/relations.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ You can also change the name of the generated "junction" table.
```typescript
@ManyToMany(type => Category)
@JoinTable({
name: "question_categories" // table name for the junction table of this relation
name: "question_categories", // table name for the junction table of this relation
joinColumn: {
name: "question",
referencedColumnName: "id"
Expand Down

0 comments on commit 81f4b43

Please sign in to comment.