From 48933d3c3e4a756c70f293e10baa7477bf139388 Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Thu, 26 Sep 2013 15:21:47 +0900 Subject: [PATCH] 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 --- Documentation/user-search.txt | 4 ++-- 1 file 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.