Skip to content

Commit

Permalink
Fix the number of zero in unsigned integer example
Browse files Browse the repository at this point in the history
  • Loading branch information
dadadamarine committed Jul 16, 2019
1 parent 26b7823 commit c2bc4e1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions 2.1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,11 @@ A command ID specifies one of the following commands:

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


#### 4.3.2. Parameter Integers
Expand Down

0 comments on commit c2bc4e1

Please sign in to comment.