Make wording more accurate.
An important distinction between the behavior of alice
and some other middleware libraries that literally call the handlers sequentially.
diff --git a/README.md b/README.md
index b55878b..7bea868 100644
--- a/README.md
+++ b/README.md
@@ -84,9 +84,8 @@
Note that Alice makes **no guarantees** for
how one or another piece of middleware will behave.
-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.
+Once it passes the execution to the outer layer of middleware,
+it has no saying in whether middleware will execute the inner handlers.
This is intentional behavior.
Alice works with Go 1.0 and higher,