From 424ca9378a43df41b355747e14919ad517c71893 Mon Sep 17 00:00:00 2001 From: Travis Turner Date: Wed, 12 Sep 2018 09:20:31 -0500 Subject: [PATCH] fixing a copy/paste issue in the Not() docs --- docs/query-language.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/query-language.md b/docs/query-language.md index 34cc7a574..876cf69c6 100644 --- a/docs/query-language.md +++ b/docs/query-language.md @@ -409,7 +409,7 @@ attrs will always be empty **Examples:** -Query columns with a bit set in one row and not another (repositories that are starred by one user and not another): +Query existing columns that do not have a bit set in the given row. ```request Not(Row(stargazer=1)) ```