diff --git a/imports.md b/imports.md
index 6d958ee..34f0bf7 100644
--- a/imports.md
+++ b/imports.md
@@ -937,7 +937,7 @@ POSIX.
Return a stream for appending to a file, if available.
May fail with an error-code describing why the file cannot be appended.
Note: This allows using write-stream
, which is similar to write
with
-O_APPEND
in in POSIX.
+O_APPEND
in POSIX.
Params
self
: borrow<descriptor
>
@@ -1284,7 +1284,7 @@ may also include the inode number, device number, birth timestamp, and
other metadata fields that may change when the file is modified or
replaced. It may also include a secret value chosen by the
implementation and not otherwise exposed.
-Implementations are encourated to provide the following properties:
+Implementations are encouraged to provide the following properties:
- If the file is not modified or replaced, the computed hash value should
usually not change.
@@ -1352,7 +1352,7 @@ errors are filesystem-related errors.
----
Functions
get-directories: func
-Return the set of preopened directories, and their path.
+Return the set of preopened directories, and their paths.
Return values
- list<(own<
descriptor
>, string
)>
diff --git a/wit/preopens.wit b/wit/preopens.wit
index 410bec1..d7f21a3 100644
--- a/wit/preopens.wit
+++ b/wit/preopens.wit
@@ -5,7 +5,7 @@ interface preopens {
@since(version = 0.2.0)
use types.{descriptor};
- /// Return the set of preopened directories, and their path.
+ /// Return the set of preopened directories, and their paths.
@since(version = 0.2.0)
get-directories: func() -> list>;
}
diff --git a/wit/types.wit b/wit/types.wit
index 49e0a30..88b7fcf 100644
--- a/wit/types.wit
+++ b/wit/types.wit
@@ -327,7 +327,7 @@ interface types {
/// May fail with an error-code describing why the file cannot be appended.
///
/// Note: This allows using `write-stream`, which is similar to `write` with
- /// `O_APPEND` in in POSIX.
+ /// `O_APPEND` in POSIX.
@since(version = 0.2.0)
append-via-stream: func() -> result;
@@ -623,7 +623,7 @@ interface types {
/// replaced. It may also include a secret value chosen by the
/// implementation and not otherwise exposed.
///
- /// Implementations are encourated to provide the following properties:
+ /// Implementations are encouraged to provide the following properties:
///
/// - If the file is not modified or replaced, the computed hash value should
/// usually not change.