From 10c081dab1521affb3175992618b3efdc5b17243 Mon Sep 17 00:00:00 2001 From: trsnx <52205550+trsnx@users.noreply.github.com> Date: Wed, 5 Jul 2023 17:11:32 +0300 Subject: [PATCH] fix(parsers.binary): Fix binary parser example in README.md (#13547) --- plugins/parsers/binary/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/parsers/binary/README.md b/plugins/parsers/binary/README.md index d5e840a04..355eeaede 100644 --- a/plugins/parsers/binary/README.md +++ b/plugins/parsers/binary/README.md @@ -58,7 +58,7 @@ user-specified configurations. ## timezone -- Timezone of "time" entries. Only applies to "time" assignments. ## Can be "utc", "local" or any valid Golang timezone (e.g. "Europe/Berlin") entries = [ - { type = "string", assignment = "measurement", terminator: "null" }, + { type = "string", assignment = "measurement", terminator = "null" }, { name = "address", type = "uint16", assignment = "tag" }, { name = "value", type = "float64" }, { type = "unix", assignment = "time" },