From 37067505799e6e50dea48bf7bfb3d956cd3a6674 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Tue, 22 Jan 2019 16:01:56 -0700 Subject: [PATCH] corrected content on the fill function --- content/v2.0/reference/flux/functions/transformations/fill.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/v2.0/reference/flux/functions/transformations/fill.md b/content/v2.0/reference/flux/functions/transformations/fill.md index d021e47bb..46a68fece 100644 --- a/content/v2.0/reference/flux/functions/transformations/fill.md +++ b/content/v2.0/reference/flux/functions/transformations/fill.md @@ -1,6 +1,6 @@ --- title: fill() function -description: The fill() function filters data based on conditions defined in a predicate function (fn). +description: The fill() function replaces all null values in an input stream and replace them with a non-null value. menu: v2_0_ref: name: fill @@ -8,7 +8,7 @@ menu: weight: 1 --- -The `filter()` function replaces all null values in an input stream and replace them with a non-null value. +The `fill()` function replaces all null values in an input stream and replace them with a non-null value. The output stream is the same as the input stream with all null values replaced in the specified column. _**Function type:** Transformation_