Skip to content

Commit fe591e4

Browse files
committed
Fixed mispprint
1 parent 45c80c7 commit fe591e4

File tree

1 file changed

+1
-1
lines changed
  • tests/fixtures/inversify-async

1 file changed

+1
-1
lines changed

tests/fixtures/inversify-async/ioc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ container.bind('error').toFactory(() => {
1515
container.bind<AsyncErrorController>(AsyncErrorController).to(AsyncErrorController).inSingletonScope();
1616

1717
const iocContainer = {
18-
async get<T>(controller: interfaces.ServivceIdentifier ): Promise<T> {
18+
async get<T>(controller: interfaces.ServiceIdentifier<T>): Promise<T> {
1919
return container.get(controller);
2020
},
2121
};

0 commit comments

Comments
 (0)