From 12c667afd7f823f4532907543ebcf1b25e87aeed Mon Sep 17 00:00:00 2001
From: RickyRister <42636155+RickyRister@users.noreply.github.com>
Date: Mon, 23 Feb 2026 16:34:23 -0800
Subject: [PATCH] [Search] Fix OR usage in examples (#6628)
---
cockatrice/resources/help/deck_search.md | 2 +-
cockatrice/resources/help/search.md | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/cockatrice/resources/help/deck_search.md b/cockatrice/resources/help/deck_search.md
index 3263daf04..163137335 100644
--- a/cockatrice/resources/help/deck_search.md
+++ b/cockatrice/resources/help/deck_search.md
@@ -47,6 +47,6 @@ searches are case insensitive.
[t:aggro OR o:control](#t:aggro OR o:control) (Any deck filename that contains either aggro or control)
Grouping:
-red -([[]]:100 or aggro) (Any deck that has red in its filename but is not 100 cards or has aggro in its filename)
+red -([[]]:100 OR aggro) (Any deck that has red in its filename but is not 100 cards or has aggro in its filename)
\ No newline at end of file
diff --git a/cockatrice/resources/help/search.md b/cockatrice/resources/help/search.md
index 63e6e74c3..0c8bdb450 100644
--- a/cockatrice/resources/help/search.md
+++ b/cockatrice/resources/help/search.md
@@ -51,16 +51,16 @@ In this list of examples below, each entry has an explanation and can be clicked
Edition:
[set:lea](#set:lea) (Cards that appear in Alpha, which has the set code LEA)
-[e:lea or e:leb](#e:lea or e:leb) (Cards that appear in Alpha or Beta)
+[e:lea OR e:leb](#e:lea OR e:leb) (Cards that appear in Alpha or Beta)
Negate:
[c:wu -c:m](#c:wu -c:m) (Any card that is white or blue, but not multicolored)
Branching:
-[t:sliver or o:changeling](#t:sliver or o:changeling) (Any card that is either a sliver or has changeling)
+[t:sliver OR o:changeling](#t:sliver OR o:changeling) (Any card that is either a sliver or has changeling)
Grouping:
-t:angel -(angel or c:w) (Any angel that doesn't have angel in its name and isn't white)
+t:angel -(angel OR c:w) (Any angel that doesn't have angel in its name and isn't white)
Regular Expression:
[/^fell/](#/^fell/) (Any card name that begins with "fell")