Skip to content

Commit b87a6a1

Browse files
authored
Merge pull request #141 from dadadamarine/master
Fix the number of zero in unsigned integer example
2 parents 26b7823 + c2bc4e1 commit b87a6a1

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

‎2.1/README.md‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,11 @@ A command ID specifies one of the following commands:
104104

105105
| Command | ID | Count | CommandInteger | Binary Representation `[Count][Id]` |
106106
| --------- |:----:|:-----:|:--------------:|:----------------------------------------:|
107-
| MoveTo | `1` | `1` | `9` | `[00000000 00000000 0000000 00001][001]` |
108-
| MoveTo | `1` | `120` | `961` | `[00000000 00000000 0000011 11000][001]` |
109-
| LineTo | `2` | `1` | `10` | `[00000000 00000000 0000000 00001][010]` |
110-
| LineTo | `2` | `3` | `26` | `[00000000 00000000 0000000 00011][010]` |
111-
| ClosePath | `7` | `1` | `15` | `[00000000 00000000 0000000 00001][111]` |
107+
| MoveTo | `1` | `1` | `9` | `[00000000 00000000 00000000 00001][001]` |
108+
| MoveTo | `1` | `120` | `961` | `[00000000 00000000 00000011 11000][001]` |
109+
| LineTo | `2` | `1` | `10` | `[00000000 00000000 00000000 00001][010]` |
110+
| LineTo | `2` | `3` | `26` | `[00000000 00000000 00000000 00011][010]` |
111+
| ClosePath | `7` | `1` | `15` | `[00000000 00000000 00000000 00001][111]` |
112112

113113

114114
#### 4.3.2. Parameter Integers

0 commit comments

Comments
 (0)