From 2aaa1178429fc7b06c8d166bc51ee64eaf76ff22 Mon Sep 17 00:00:00 2001 From: Pierre Tholoniat Date: Mon, 17 Jun 2024 22:19:04 -0400 Subject: [PATCH] Fix typo in encoding.md --- content/programming-guides/encoding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/programming-guides/encoding.md b/content/programming-guides/encoding.md index cf4053ec..56ba51ef 100644 --- a/content/programming-guides/encoding.md +++ b/content/programming-guides/encoding.md @@ -260,7 +260,7 @@ encoding of `"testing"`. The int32 varint means that the max length of a string is 2GB. In Protoscope, this is written as `2:LEN 7 "testing"`. However, it can be -incovenient to repeat the length of the string (which, in Protoscope text, is +inconvenient to repeat the length of the string (which, in Protoscope text, is already quote-delimited). Wrapping Protoscope content in braces will generate a length prefix for it: `{"testing"}` is a shorthand for `7 "testing"`. `{}` is always inferred by fields to be a `LEN` record, so we can write this record