summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Pursehouse <david.pursehouse@sonymobile.com>2013-09-26 15:21:47 +0900
committerDavid Pursehouse <david.pursehouse@sonymobile.com>2013-09-26 15:24:04 +0900
commit48933d3c3e4a756c70f293e10baa7477bf139388 (patch)
tree3992a50534216e97d8e51df17af4b4710f835a2a
parenta7a3582291765c43c87707aa6ff2bd2d7b388dc2 (diff)
Fix documentation of query label operator
Two examples in the label query operator documentation were using old syntax that does not work any more. Update the examples with correct syntax. Bug: Issue 2144 Change-Id: I53c04bc385603be1b4e62c94697146ab0bef8fb9
-rw-r--r--Documentation/user-search.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/user-search.txt b/Documentation/user-search.txt
index 3d72732867..781118f5df 100644
--- a/Documentation/user-search.txt
+++ b/Documentation/user-search.txt
@@ -360,11 +360,11 @@ Matches changes with either a +1, +2, or any higher score.
+
Matches changes with either a -1, -2, or any lower score.
-`is:open Code-Review+2 Verified+1 -Verified-1 -Code-Review-2`::
+`is:open label:Code-Review+2 label:Verified+1 NOT label:Verified-1 NOT label:Code-Review-2`::
+
Matches changes that are ready to be submitted.
-`is:open (Verified-1 OR Code-Review-2)`::
+`is:open (label:Verified-1 OR label:Code-Review-2)`::
+
Changes that are blocked from submission due to a blocking score.