Skip to content

Commit 341f5e8

Browse files
author
Gery Hirschfeld
authored
Merge pull request #67 from davicedraz/patch-1
fixing 'entity' typo
2 parents 73c1230 + 92516e7 commit 341f5e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ How does it work? Just create a entity factory for your entities (models) and a
4646
First create your TypeORM entites.
4747

4848
```typescript
49-
// user.enity.ts
49+
// user.entity.ts
5050
@Entity()
5151
export class User {
5252
@PrimaryGeneratedColumn('uuid') id: string
@@ -61,7 +61,7 @@ export class User {
6161
}
6262
}
6363

64-
// pet.enity.ts
64+
// pet.entity.ts
6565
@Entity()
6666
export class Pet {
6767
@PrimaryGeneratedColumn('uuid') id: string

0 commit comments

Comments
 (0)