diff --git a/src/components/SearchSyntaxPopup.svelte b/src/components/SearchSyntaxPopup.svelte index 69d8c8a24..ff1fff49f 100644 --- a/src/components/SearchSyntaxPopup.svelte +++ b/src/components/SearchSyntaxPopup.svelte @@ -5,7 +5,6 @@ export let title = 'Search syntax' let examples = [ { query: 'cat', result: 'Finds channels that have "cat" in their descriptions.' }, - { query: '^dog', result: 'Finds channels whose name starts with "dog".' }, { query: 'cat dog', result: 'Finds channels that have "cat" AND "dog" in their descriptions.' }, { query: 'cat,dog', result: 'Finds channels that have "cat" OR "dog" in their descriptions.' }, { @@ -41,7 +40,7 @@ ] -
+
- Query - Result + Query + Result