From 194673ac93701cd6143ddd27692a59f2398fad83 Mon Sep 17 00:00:00 2001 From: Alexandre Franke Date: Tue, 18 Feb 2020 09:43:01 +0100 Subject: [PATCH] Fix is_absent documentation --- c/dsl/function_manager.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/dsl/function_manager.c b/c/dsl/function_manager.c index 69965d65f..67251df01 100644 --- a/c/dsl/function_manager.c +++ b/c/dsl/function_manager.c @@ -366,7 +366,7 @@ static function_lookup_t FUNCTION_LOOKUP_TABLE[] = { "Floating-point seconds since the epoch,\n" "e.g. 1440768801.748936." }, - {FUNC_CLASS_TYPING, "is_absent", 1,0, "False if field is present in input, false otherwise"}, + {FUNC_CLASS_TYPING, "is_absent", 1,0, "False if field is present in input, true otherwise"}, {FUNC_CLASS_TYPING, "is_bool", 1,0, "True if field is present with boolean value. Synonymous with is_boolean."}, {FUNC_CLASS_TYPING, "is_boolean", 1,0, "True if field is present with boolean value. Synonymous with is_bool."}, {FUNC_CLASS_TYPING, "is_empty", 1,0, "True if field is present in input with empty string value, false otherwise."},