From 70f4f433ad8a919554918e6f5c6bd4e01c7b2bba Mon Sep 17 00:00:00 2001 From: Julien Pilet Date: Wed, 18 Oct 2017 10:18:18 +0200 Subject: [PATCH] Fix error in decoded example --- 2.1/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2.1/README.md b/2.1/README.md index 311ea67..b646970 100644 --- a/2.1/README.md +++ b/2.1/README.md @@ -250,8 +250,8 @@ Encoded as: [ 17 10 14 3 9 ] | | | | `> Decoded: ((9 >> 1) ^ (-(9 & 1))) = -5 | | | `> Decoded: ((3 >> 1) ^ (-(3 & 1))) = -2 | | | === relative MoveTo(-2, -5) == create point (3,2) - | | `> Decoded: ((34 >> 1) ^ (-(34 & 1))) = +7 - | `> Decoded: ((50 >> 1) ^ (-(50 & 1))) = +5 + | | `> Decoded: ((14 >> 1) ^ (-(14 & 1))) = +7 + | `> Decoded: ((10 >> 1) ^ (-(10 & 1))) = +5 | ===== relative MoveTo(+5, +7) == create point (5,7) `> [00010 001] = command id 1 (MoveTo), command count 2 ```