diff --git a/imports.md b/imports.md
index d403535..55647e8 100644
--- a/imports.md
+++ b/imports.md
@@ -300,7 +300,7 @@ all derived pollable
s created with this fun
Write zeroes to a stream.
-this should be used precisely like write
with the exact same
+
This should be used precisely like write
with the exact same
preconditions (must use check-write first), but instead of
passing a list of bytes, you simply pass the number of zero-bytes
that should be written.
diff --git a/wit/poll.wit b/wit/poll.wit
index bddde3c..81b1cab 100644
--- a/wit/poll.wit
+++ b/wit/poll.wit
@@ -3,7 +3,7 @@ package wasi:io@0.2.0-rc-2023-11-10;
/// A poll API intended to let users wait for I/O events on multiple handles
/// at once.
interface poll {
- /// `pollable` epresents a single I/O event which may be ready, or not.
+ /// `pollable` represents a single I/O event which may be ready, or not.
resource pollable {
/// Return the readiness of a pollable. This function never blocks.
diff --git a/wit/streams.wit b/wit/streams.wit
index e9a30f8..f6f7fe0 100644
--- a/wit/streams.wit
+++ b/wit/streams.wit
@@ -178,7 +178,7 @@ interface streams {
/// Write zeroes to a stream.
///
- /// this should be used precisely like `write` with the exact same
+ /// This should be used precisely like `write` with the exact same
/// preconditions (must use check-write first), but instead of
/// passing a list of bytes, you simply pass the number of zero-bytes
/// that should be written.