From e2227832c1931c56a3ad5235abed71c446cf7f2b Mon Sep 17 00:00:00 2001 From: Julien Monnier Date: Wed, 19 Aug 2026 13:06:42 +0200 Subject: [PATCH] Fixed OR operator symbol in documentation --- docs/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api.md b/docs/api.md index 3c3a61c..d56c22c 100644 --- a/docs/api.md +++ b/docs/api.md @@ -422,7 +422,7 @@ Combines two `Pattern`s using `and` operator. M(scheme="http") & M(host="example.org") ``` -### OR (&) +### OR (|) Combines two `Pattern`s using `or` operator. ``` python M(method="PUT") | M(method="PATCH")