From d71a7ff2a1459254bc563318362329efcf2db4e5 Mon Sep 17 00:00:00 2001 From: kostya-sh Date: Tue, 4 Aug 2015 10:41:17 +0800 Subject: [PATCH] Fix varint-encode() encoding algorithm link The spec says that varint-encode() is ULEB-128 encoding but links to VLQ algorithm that is slightly different from ULEB-128 --- Encodings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Encodings.md b/Encodings.md index 662e6afbf..46e614e25 100644 --- a/Encodings.md +++ b/Encodings.md @@ -101,7 +101,7 @@ repeated-value := value that is repeated, using a fixed-width of round-up-to-nex shifting and ORing with a mask. (to make this optimization work on a big-endian machine, you would have to use the ordering used in the [deprecated bit-packing](#BITPACKED) encoding) -2. varint-encode() is ULEB-128 encoding, see http://en.wikipedia.org/wiki/Variable-length_quantity +2. varint-encode() is ULEB-128 encoding, see https://en.wikipedia.org/wiki/LEB128 ### Bit-packed (Deprecated) (BIT_PACKED = 4) This is a bit-packed only encoding, which is deprecated and will be replaced by the [RLE/bit-packing](#RLE) hybrid encoding.