orthography

fix the word spelling.
This commit is contained in:
Tiago 2018-01-04 14:30:59 -02:00 committed by GitHub
parent 2c7ef68c9b
commit 0e3296bdf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -147,7 +147,7 @@ Column name for such relation will become `categoryName`
`@JoinTable` is used for `many-to-many` relations and describes join columns of the "junction" table.
A junction table is a special separate table created automatically by TypeORM with columns that refer to the related entities.
You can change column names inside junction tables and their referenced columns with `@JoinColumn`:
You can also change the ame of the generated "junction" table.
You can also change the name of the generated "junction" table.
```typescript
@ManyToMany(type => Category)