Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c42cdf5

Browse files
committed
Fix type names in README.md
1 parent a5568f1 commit c42cdf5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ This crate defines the fixed points numbers used by SWF files:
2828
| Name | Integer part | Fractional part | Min value | Max value | Epsilon |
2929
|-------------|--------------|-----------------|-----------|---------------|----------|
3030
| Sfixed8P8 | `i8` | `u8` | -128 | 128 - 1/256 | 1 / 256 |
31-
| Ufixed8p8 | `u8` | `u8` | 0 | 256 - 1/256 | 1 / 256 |
32-
| Sfixed16p16 | `i16` | `u16` | -2^15 | 2^15 - 1/2^16 | 1 / 2^16 |
33-
| Ufixed16p16 | `u16` | `u16` | 0 | 2^16 - 1/2^16 | 1 / 2^16 |
31+
| Ufixed8P8 | `u8` | `u8` | 0 | 256 - 1/256 | 1 / 256 |
32+
| Sfixed16P16 | `i16` | `u16` | -2^15 | 2^15 - 1/2^16 | 1 / 2^16 |
33+
| Ufixed16P16 | `u16` | `u16` | 0 | 2^16 - 1/2^16 | 1 / 2^16 |
3434

3535
## Usage
3636

0 commit comments

Comments
 (0)