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
This commit is contained in:
David Pursehouse 2013-09-26 15:21:47 +09:00
parent a7a3582291
commit 48933d3c3e

View File

@ -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.