Skip to content

Commit 18b2ff1

Browse files
committed
Fix stream.read/write summary text in Explainer.md
1 parent f8299a8 commit 18b2ff1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

design/mvp/Explainer.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1759,11 +1759,11 @@ An analogous relationship exists among `readable-future-end<T>`,
17591759

17601760
###### 🔀 `stream.read` and `stream.write`
17611761

1762-
| Synopsis | |
1763-
| -------------------------- | --------------------------------------------------------------------------- |
1764-
| Approximate WIT signature | `func<T>(e: readable-stream-end<T>, b: writable-buffer<T>) -> read-status` |
1765-
| Approximate WIT signature | `func<T>(e: writable-stream-end<T>, b: readable-buffer<T>) -> write-status` |
1766-
| Canonical ABI signature | `[stream-end:i32 ptr:i32 num:i32] -> [i32]` |
1762+
| Synopsis | |
1763+
| -------------------------------------------- | --------------------------------------------------------------------------- |
1764+
| Approximate WIT signature for `stream.read` | `func<T>(e: readable-stream-end<T>, b: writable-buffer<T>) -> read-status` |
1765+
| Approximate WIT signature for `stream.write` | `func<T>(e: writable-stream-end<T>, b: readable-buffer<T>) -> write-status` |
1766+
| Canonical ABI signature | `[stream-end:i32 ptr:i32 num:i32] -> [i32]` |
17671767

17681768
where `read-status` is defined in WIT as:
17691769
```wit

0 commit comments

Comments
 (0)