Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix a typo in the range example #13738

Merged
merged 2 commits into from
May 1, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ui/src/shared/constants/fluxFunctions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ export const RANGE: FluxToolbarFunction = {
{
name: 'stop',
desc:
'Specifies the exclusive newest time to be included in the results. Defaults to `now`.',
'Specifies the exclusive newest time to be included in the results. Defaults to `now()`.',
type: 'Duration',
},
],
package: '',
desc:
"Filters records based on time bounds. Each input table's records are filtered to contain only records that exist within the time bounds. Each input table's group key value is modified to fit within the time bounds. Tables where all records exists outside the time bounds are filtered entirely.",
example: 'range(start: -15m, stop: now)',
example: 'range(start: -15m, stop: now())',
category: 'Transformations',
link:
'https://v2.docs.influxdata.com/v2.0/reference/flux/functions/built-in/transformations/range/',
Expand Down