From 89e060b922e1a0739e20480c356b9ca5175773fd Mon Sep 17 00:00:00 2001 From: peace2000 <17256841+peace2000@users.noreply.github.com> Date: Sun, 1 Aug 2021 00:38:24 +0300 Subject: [PATCH] Update SyntaxMeaningsThatAreActuallyHumanReadable.md --- Wiki/SyntaxMeaningsThatAreActuallyHumanReadable.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wiki/SyntaxMeaningsThatAreActuallyHumanReadable.md b/Wiki/SyntaxMeaningsThatAreActuallyHumanReadable.md index 03df946b7..1cf8478d4 100644 --- a/Wiki/SyntaxMeaningsThatAreActuallyHumanReadable.md +++ b/Wiki/SyntaxMeaningsThatAreActuallyHumanReadable.md @@ -17,7 +17,7 @@ * `[href$="text"]`: Finds page elements whose value *ends* with the text. * `[href*="text"]`: Finds page elements whose value contains the text anywhere within it. * `[href~="text"]`: Finds page elements whose value contains the word (with spaces around it) anywhere within it. -* `[href|="text"]`: Same as `[href="text"]`, but can also select text that is then followed by a dash. +* `[href|="text"]`: Same as `[href="text"]`, but can also select text that is then followed by a hyphen `-`. * `:not(.element)`: Finds page elements that doesn't contain a specified element or text string. * `:-abp-contains(text)`: Finds page elements that contains such text within it. * `:-abp-has(.element)`: Finds page elements that contains such an element within it.