Skip to content

Commit b50b0af

Browse files
Merge pull request #1092 from dciccale/patch-1
docs(): fix typo
2 parents eb242db + 6665e45 commit b50b0af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/application-context.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const app = await NestFactory.create(ApplicationModule);
2323
const tasksService = app.get(TasksService);
2424
```
2525

26-
To access the `TasksService` instance we the use `get()` method. The `get()` method acts like a **query** that searches for an instance in each registered module. Alternatively, for strict context checking, pass an options object with the `strict: true` property. With this option in effect, you have to navigate through specific modules to obtain a particular instance from the selected context.
26+
To access the `TasksService` instance we use the `get()` method. The `get()` method acts like a **query** that searches for an instance in each registered module. Alternatively, for strict context checking, pass an options object with the `strict: true` property. With this option in effect, you have to navigate through specific modules to obtain a particular instance from the selected context.
2727

2828
```typescript
2929
@@filename()

0 commit comments

Comments
 (0)