From 60dd569c1b336789cc59e480bdb5eaee072a753c Mon Sep 17 00:00:00 2001 From: John Kerl Date: Sat, 15 Dec 2018 12:46:47 -0500 Subject: [PATCH] fix is_not_empty online help --- c/dsl/function_manager.c | 2 +- doc/manpage.html | 4 ++-- doc/manpage.txt | 4 ++-- doc/mlr.1 | 6 +++--- doc/reference-dsl.html | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/c/dsl/function_manager.c b/c/dsl/function_manager.c index 63776ba9f..c7f71889c 100644 --- a/c/dsl/function_manager.c +++ b/c/dsl/function_manager.c @@ -371,7 +371,7 @@ static function_lookup_t FUNCTION_LOOKUP_TABLE[] = { {FUNC_CLASS_TYPING, "is_int", 1,0, "True if field is present with value inferred to be int "}, {FUNC_CLASS_TYPING, "is_map", 1,0, "True if argument is a map."}, {FUNC_CLASS_TYPING, "is_nonempty_map", 1,0, "True if argument is a map which is non-empty."}, - {FUNC_CLASS_TYPING, "is_not_empty", 1,0, "False if field is present in input with empty value, false otherwise"}, + {FUNC_CLASS_TYPING, "is_not_empty", 1,0, "False if field is present in input with empty value, true otherwise"}, {FUNC_CLASS_TYPING, "is_not_map", 1,0, "True if argument is not a map."}, {FUNC_CLASS_TYPING, "is_not_null", 1,0, "False if argument is null (empty or absent), true otherwise."}, {FUNC_CLASS_TYPING, "is_null", 1,0, "True if argument is null (empty or absent), false otherwise."}, diff --git a/doc/manpage.html b/doc/manpage.html index a2180a3ae..870d34514 100644 --- a/doc/manpage.html +++ b/doc/manpage.html @@ -1916,7 +1916,7 @@ FUNCTIONS FOR FILTER/PUT (class=typing #args=1): True if argument is a map which is non-empty. is_not_empty - (class=typing #args=1): False if field is present in input with empty value, false otherwise + (class=typing #args=1): False if field is present in input with empty value, true otherwise is_not_map (class=typing #args=1): True if argument is not a map. @@ -2439,7 +2439,7 @@ SEE ALSO - 2018-12-09 MILLER(1) + 2018-12-15 MILLER(1)

diff --git a/doc/manpage.txt b/doc/manpage.txt index bd0f2c36e..e17db42f0 100644 --- a/doc/manpage.txt +++ b/doc/manpage.txt @@ -1722,7 +1722,7 @@ FUNCTIONS FOR FILTER/PUT (class=typing #args=1): True if argument is a map which is non-empty. is_not_empty - (class=typing #args=1): False if field is present in input with empty value, false otherwise + (class=typing #args=1): False if field is present in input with empty value, true otherwise is_not_map (class=typing #args=1): True if argument is not a map. @@ -2245,4 +2245,4 @@ SEE ALSO - 2018-12-09 MILLER(1) + 2018-12-15 MILLER(1) diff --git a/doc/mlr.1 b/doc/mlr.1 index 33d2d6558..f6c610d46 100644 --- a/doc/mlr.1 +++ b/doc/mlr.1 @@ -2,12 +2,12 @@ .\" Title: mlr .\" Author: [see the "AUTHOR" section] .\" Generator: ./mkman.rb -.\" Date: 2018-12-09 +.\" Date: 2018-12-15 .\" Manual: \ \& .\" Source: \ \& .\" Language: English .\" -.TH "MILLER" "1" "2018-12-09" "\ \&" "\ \&" +.TH "MILLER" "1" "2018-12-15" "\ \&" "\ \&" .\" ----------------------------------------------------------------- .\" * Portability definitions .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -2837,7 +2837,7 @@ e.g. 1440768801.748936. .RS 0 .\} .nf -(class=typing #args=1): False if field is present in input with empty value, false otherwise +(class=typing #args=1): False if field is present in input with empty value, true otherwise .fi .if n \{\ .RE diff --git a/doc/reference-dsl.html b/doc/reference-dsl.html index 7ab164cc9..f78fcfdf2 100644 --- a/doc/reference-dsl.html +++ b/doc/reference-dsl.html @@ -4621,7 +4621,7 @@ is_nonempty_map (class=typing #args=1): True if argument is a map which is non-e

-is_not_empty (class=typing #args=1): False if field is present in input with empty value, false otherwise
+is_not_empty (class=typing #args=1): False if field is present in input with empty value, true otherwise