From b2863831a50a53b7cc2a4badbef30b5ace2070d4 Mon Sep 17 00:00:00 2001 From: StrykeSlammerII Date: Sun, 11 Feb 2024 01:28:21 -0500 Subject: [PATCH] Removed excess backtick Part of the paragraph was wrapped in ``, making it difficult to read. Also made some minor grammar edits. --- docs/v4/middleware/routing.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/v4/middleware/routing.md b/docs/v4/middleware/routing.md index 897addb9..e6bcad89 100644 --- a/docs/v4/middleware/routing.md +++ b/docs/v4/middleware/routing.md @@ -2,11 +2,11 @@ title: Routing Middleware --- -The routing has been implemented as middleware.` +The routing has been implemented as middleware. We are still using [FastRoute](https://github.com/nikic/FastRoute) as the default router but it is not tightly coupled to it. If you wanted to implement another routing library you could by creating your own implementations of the routing interfaces. -`DispatcherInterface`, `RouteCollectorInterface`, `RouteParserInterface` and `RouteResolverInterface` which create a bridge between Slim's components and the routing library. -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. +`DispatcherInterface`, `RouteCollectorInterface`, `RouteParserInterface` and `RouteResolverInterface` create a bridge between Slim's components and the routing library. +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. ## Usage ```php