docs: use single quotes for multi-line literal TOML (#13124)

fixes: #13123
This commit is contained in:
Joshua Powers 2023-04-21 07:24:55 -06:00 committed by GitHub
parent 4bd408eefd
commit 35d1ee3d96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -32,7 +32,7 @@ The message is supposed to be encoded as follows:
avro_schema_registry = "http://localhost:8081"
## Schema string; exactly one of schema registry and schema must be set
#avro_schema = """
#avro_schema = '''
# {
# "type":"record",
# "name":"Value",
@ -52,7 +52,7 @@ The message is supposed to be encoded as follows:
# }
# ]
# }
#"""
#'''
## Measurement string; if not set, determine measurement name from
## schema (as "<namespace>.<name>")
@ -72,7 +72,7 @@ The message is supposed to be encoded as follows:
## If avro_timestamp is specified, avro_timestamp_format must be set
## to one of 'unix', 'unix_ms', 'unix_us', or 'unix_ns'
# avro_timestamp_format = "unix"
## Used to separate parts of array structures. As above, the default
## is the empty string, so a=["a", "b"] becomes a0="a", a1="b".
## If this were set to "_", then it would be a_0="a", a_1="b".