Skip to content

Commit b286383

Browse files
Removed excess backtick
Part of the paragraph was wrapped in ``, making it difficult to read. Also made some minor grammar edits.
1 parent 8efbe33 commit b286383

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/v4/middleware/routing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
title: Routing Middleware
33
---
44

5-
The routing has been implemented as middleware.`
5+
The routing has been implemented as middleware.
66
We are still using [FastRoute](https://github.com/nikic/FastRoute) as the default router but it is not tightly coupled to it.
77
If you wanted to implement another routing library you could by creating your own implementations of the routing interfaces.
8-
`DispatcherInterface`, `RouteCollectorInterface`, `RouteParserInterface` and `RouteResolverInterface` which create a bridge between Slim's components and the routing library.
9-
If you were using `determineRouteBeforeAppMiddleware`, you need to add the `Middleware\RoutingMiddleware` middleware to your application just before your call `run()`` to maintain the previous behaviour.
8+
`DispatcherInterface`, `RouteCollectorInterface`, `RouteParserInterface` and `RouteResolverInterface` create a bridge between Slim's components and the routing library.
9+
If you were using `determineRouteBeforeAppMiddleware`, you need to add the `Middleware\RoutingMiddleware` middleware to your application just before your call to `run()` to maintain the previous behaviour.
1010

1111
## Usage
1212
```php

0 commit comments

Comments
 (0)