Update README.md
Updated README.md to correctly reflect the nature of the middleware. Sequentially means that they're run in sequence, not concurrently, which is also how you describe it in your documentation as excerpted below.
// When the request comes in, it will be passed to m1, then m2, then m3
// and finally, the given handler
diff --git a/README.md b/README.md
index a159547..da38476 100644
--- a/README.md
+++ b/README.md
@@ -76,9 +76,8 @@
Note that Alice makes **no guarantees** for
how one or another piece of middleware will behave.
-It does not execute all handlers sequentially
-but wraps them in one another.
-If a piece of middleware were to stop the chain,
+It executes all middleware sequentially so that if a
+piece of middleware were to stop the chain,
the request will not reach the inner handlers.
This is intentional behavior.