Skip to content

Commit

Permalink
Fix typo in description of limits binary format (#22)
Browse files Browse the repository at this point in the history
Closes #21
  • Loading branch information
alexcrichton authored Jun 11, 2023
1 parent d456ed8 commit d1bcd3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proposals/memory64/Overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,8 +282,8 @@ have to support 32-bit memory addresses in their ABI.
| 0x03 n:u32 m:u32 ⇒ i32, {min n, max m}, 1 ;; from threads proposal
| 0x04 n:u64 ⇒ i64, {min n, max ϵ}, 0
| 0x05 n:u64 m:u64 ⇒ i64, {min n, max m}, 0
| 0x06 n:u32 ⇒ i64, {min n, max ϵ}, 1 ;; from threads proposal
| 0x07 n:u32 m:u32 ⇒ i64, {min n, max m}, 1 ;; from threads proposal
| 0x06 n:u64 ⇒ i64, {min n, max ϵ}, 1 ;; from threads proposal
| 0x07 n:u64 m:u64 ⇒ i64, {min n, max m}, 1 ;; from threads proposal
```
* The [memory type][binary memtype] structure is extended to use this limits
Expand Down

0 comments on commit d1bcd3d

Please sign in to comment.