diff --git a/content/v2.0/reference/flux/functions/built-in/transformations/map.md b/content/v2.0/reference/flux/functions/built-in/transformations/map.md index 487c69b9e..f2e988be1 100644 --- a/content/v2.0/reference/flux/functions/built-in/transformations/map.md +++ b/content/v2.0/reference/flux/functions/built-in/transformations/map.md @@ -21,7 +21,7 @@ _**Function type:** Transformation_ _**Output data type:** Object_ ```js -map(fn: (r) => r._value * r._value) +map(fn: (r) => ({ _value: r._value * r._value })) ``` ## Parameters