typo fixes

pull/52/head
Scott Anderson 2019-02-08 08:51:21 -07:00
parent f863def607
commit 0123ee75d6
4 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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:

View File

@ -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_

View File

@ -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"