From 0123ee75d6ea74e9cf7017872c22049feb47083a Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Fri, 8 Feb 2019 08:51:21 -0700 Subject: [PATCH] typo fixes --- content/v2.0/reference/flux/functions/strings/_index.md | 2 +- content/v2.0/reference/flux/functions/testing/_index.md | 2 +- content/v2.0/reference/flux/functions/testing/assertempty.md | 2 +- content/v2.0/reference/flux/functions/testing/assertequals.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/v2.0/reference/flux/functions/strings/_index.md b/content/v2.0/reference/flux/functions/strings/_index.md index ec1dac991..96ea236fa 100644 --- a/content/v2.0/reference/flux/functions/strings/_index.md +++ b/content/v2.0/reference/flux/functions/strings/_index.md @@ -2,7 +2,7 @@ title: Flux string functions description: > String functions provide tools for manipulating strings in Flux. - To use them, import the "strings" package: + To use them, import the "strings" package. menu: v2_0_ref: name: Strings diff --git a/content/v2.0/reference/flux/functions/testing/_index.md b/content/v2.0/reference/flux/functions/testing/_index.md index 0aef85a7e..73d2fa7c2 100644 --- a/content/v2.0/reference/flux/functions/testing/_index.md +++ b/content/v2.0/reference/flux/functions/testing/_index.md @@ -1,5 +1,5 @@ --- -title: Flux Testing functions +title: Flux testing functions description: > Flux testing functions test piped-forward data in specific ways and return errors if the tests fail. menu: diff --git a/content/v2.0/reference/flux/functions/testing/assertempty.md b/content/v2.0/reference/flux/functions/testing/assertempty.md index d4d646c09..b5c99396e 100644 --- a/content/v2.0/reference/flux/functions/testing/assertempty.md +++ b/content/v2.0/reference/flux/functions/testing/assertempty.md @@ -9,7 +9,7 @@ menu: --- The `testing.assertEmpty()` function tests if an input stream is empty. -If not empty, the function outputs an error. +If not empty, the function returns an error. _**Function type:** Test_ diff --git a/content/v2.0/reference/flux/functions/testing/assertequals.md b/content/v2.0/reference/flux/functions/testing/assertequals.md index cb9cfbd64..94dcc469a 100644 --- a/content/v2.0/reference/flux/functions/testing/assertequals.md +++ b/content/v2.0/reference/flux/functions/testing/assertequals.md @@ -12,7 +12,7 @@ weight: 301 The `testing.assertEquals()` function tests whether two streams have identical data. If equal, the function outputs the tested data stream unchanged. -If unequal, the function outputs an error. +If unequal, the function returns an error. ```js import "testing"