Skip to content

Commit 3e65064

Browse files
Update content/middlewares.md
1 parent 7833c05 commit 3e65064

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/middlewares.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Nest middleware are, by default, equivalent to [express](https://expressjs.com/e
2020

2121
You implement custom Nest middleware in either a function, or in a class with an `@Injectable()` decorator. The class should implement the `NestMiddleware` interface, while the function does not have any special requirements. Let's start by implementing a simple middleware feature using the class method.
2222

23-
> warning **Warning** `Express` and `fastify` handle middleware differently and have different syntaxes for middleware, read more [here](https://docs.nestjs.com/techniques/performance#middleware).
23+
> warning **Warning** `Express` and `fastify` handle middleware differently and provide different method signatures, read more [here](https://docs.nestjs.com/techniques/performance#middleware).
2424
2525

2626
```typescript

0 commit comments

Comments
 (0)