From 35d1ee3d967c8328a6c718dfaac65a983f437ce1 Mon Sep 17 00:00:00 2001 From: Joshua Powers Date: Fri, 21 Apr 2023 07:24:55 -0600 Subject: [PATCH] docs: use single quotes for multi-line literal TOML (#13124) fixes: #13123 --- plugins/parsers/avro/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/parsers/avro/README.md b/plugins/parsers/avro/README.md index 9e5d6e7e6..78d7bf587 100644 --- a/plugins/parsers/avro/README.md +++ b/plugins/parsers/avro/README.md @@ -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 ".") @@ -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".