From 1b29f180eedf6791063bdb6ce256ac27bb57125f Mon Sep 17 00:00:00 2001 From: Mathieu Carbou Date: Sat, 1 Feb 2025 00:24:29 +0100 Subject: [PATCH] fix(doc): Corrected link - closes #43 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e1fec5a1..60038826 100644 --- a/README.md +++ b/README.md @@ -302,7 +302,7 @@ Middleware is a way to intercept requests to perform some operations on them, li Middleware can either be attached to individual handlers, attached at the server level (thus applied to all handlers), or both. They will be executed in the order they are attached, and they can stop the request processing by sending a response themselves. -You can have a look at the [SimpleServer.ino](https://github.com/ESP32Async/ESPAsyncWebServer/blob/main/examples/SimpleServer/SimpleServer.ino) example for some use cases. +You can have a look at the [examples](https://github.com/ESP32Async/ESPAsyncWebServer/blob/main/examples) for some use cases. For example, such middleware would handle authentication and set some attributes on the request to make them available for the next middleware and for the handler which will process the request.