Skip to content

Commit 4ec3b96

Browse files
Merge pull request #1891 from Tony133/docs/update-recipes-sequelize
docs(sequelize): fix indentation
2 parents 0c09093 + ff769fc commit 4ec3b96

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

content/recipes/sql-sequelize.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,9 @@ import { Cat } from './cat.entity';
109109
@Injectable()
110110
export class CatsService {
111111
constructor(
112-
@Inject('CATS_REPOSITORY') private catsRepository: typeof Cat) {}
112+
@Inject('CATS_REPOSITORY')
113+
private catsRepository: typeof Cat
114+
) {}
113115

114116
async findAll(): Promise<Cat[]> {
115117
return this.catsRepository.findAll<Cat>();

0 commit comments

Comments
 (0)