Merge pull request #2471 from influxdata/fix-2425

Added missing comma to array (#2425).
pull/2473/head
Jason Stirnaman 2021-05-03 15:55:28 -05:00 committed by GitHub
commit 5ff98793aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ _**Data type:** Array of records_
import "array"
rows = [
{foo: "bar", baz: 21.2}
{foo: "bar", baz: 21.2},
{foo: "bar", baz: 23.8}
]