|
1 |
| -package wasi:filesystem@0.2.2; |
| 1 | +package wasi:filesystem@0.2.3; |
2 | 2 | /// WASI filesystem is a filesystem API primarily intended to let users run WASI
|
3 | 3 | /// programs that access their files on their existing filesystems, without
|
4 | 4 | /// significant overhead.
|
|
26 | 26 | @since(version = 0.2.0)
|
27 | 27 | interface types {
|
28 | 28 | @since(version = 0.2.0)
|
29 |
| - use wasi:io/streams@0.2.2.{input-stream, output-stream, error}; |
| 29 | + use wasi:io/streams@0.2.3.{input-stream, output-stream, error}; |
30 | 30 | @since(version = 0.2.0)
|
31 |
| - use wasi:clocks/wall-clock@0.2.2.{datetime}; |
| 31 | + use wasi:clocks/wall-clock@0.2.3.{datetime}; |
32 | 32 |
|
33 | 33 | /// File size or length of a region within a file.
|
34 | 34 | @since(version = 0.2.0)
|
@@ -327,7 +327,7 @@ interface types {
|
327 | 327 | /// May fail with an error-code describing why the file cannot be appended.
|
328 | 328 | ///
|
329 | 329 | /// Note: This allows using `write-stream`, which is similar to `write` with
|
330 |
| - /// `O_APPEND` in in POSIX. |
| 330 | + /// `O_APPEND` in POSIX. |
331 | 331 | @since(version = 0.2.0)
|
332 | 332 | append-via-stream: func() -> result<output-stream, error-code>;
|
333 | 333 |
|
@@ -623,7 +623,7 @@ interface types {
|
623 | 623 | /// replaced. It may also include a secret value chosen by the
|
624 | 624 | /// implementation and not otherwise exposed.
|
625 | 625 | ///
|
626 |
| - /// Implementations are encourated to provide the following properties: |
| 626 | + /// Implementations are encouraged to provide the following properties: |
627 | 627 | ///
|
628 | 628 | /// - If the file is not modified or replaced, the computed hash value should
|
629 | 629 | /// usually not change.
|
|
0 commit comments