We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c644e5 commit cb945feCopy full SHA for cb945fe
1 file changed
aspnetcore/fundamentals/routing.md
@@ -217,7 +217,7 @@ The style of middleware shown with `Approach 1:` is **terminal middleware**. It'
217
* The matching operation in the preceding sample is `Path == "/"` for the middleware and `Path == "/Movie"` for routing.
218
* When a match is successful, it executes some functionality and returns, rather than invoking the `next` middleware.
219
220
-It's called terminal middleware middleware because it terminates the search, executes some functionality, and then returns.
+It's called terminal middleware because it terminates the search, executes some functionality, and then returns.
221
222
Comparing a terminal middleware and routing:
223
* Both approaches allow terminating the processing pipeline:
0 commit comments