From d626dcc4aad6f2769a4b0ba48be04f999794ab81 Mon Sep 17 00:00:00 2001 From: vicziani Date: Fri, 5 Jul 2019 16:41:10 +0200 Subject: [PATCH] Escape pipe characters in tutorial documentation --- docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index 1c98249e..f9e956c9 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -57,7 +57,7 @@ Hamcrest comes with a library of useful matchers. Here are some of the most impo #### Logical `allOf` - matches if all matchers match, short circuits (like Java &&) -`anyOf` - matches if any matchers match, short circuits (like Java ||) +`anyOf` - matches if any matchers match, short circuits (like Java \|\|) `not` - matches if the wrapped matcher doesn't match and vice versa