aboutsummaryrefslogtreecommitdiff
path: root/lib/std
diff options
context:
space:
mode:
authorMathieu Guay-Paquet <mathieu.guaypaquet@gmail.com>2020-12-02 11:28:29 -0500
committerVeikka Tuominen <git@vexu.eu>2020-12-02 19:08:25 +0200
commit4c8632e244fbf1213fb78f21417a2a5c6347cab3 (patch)
treea7a46933aaa89ba775d267d51e969998bbe3141f /lib/std
parentdb0cb54f4ea023869d955449ba5e3eb86981d413 (diff)
downloadzig-4c8632e244fbf1213fb78f21417a2a5c6347cab3.tar.gz
zig-4c8632e244fbf1213fb78f21417a2a5c6347cab3.zip
fix the tinyest typo
Diffstat (limited to 'lib/std')
-rw-r--r--lib/std/fs.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/fs.zig b/lib/std/fs.zig
index 6f39182d79..8b949a57f1 100644
--- a/lib/std/fs.zig
+++ b/lib/std/fs.zig
@@ -694,7 +694,7 @@ pub const Dir = struct {
return self.openFileZ(&path_c, flags);
}
- /// Save as `openFile` but WASI only.
+ /// Same as `openFile` but WASI only.
pub fn openFileWasi(self: Dir, sub_path: []const u8, flags: File.OpenFlags) File.OpenError!File {
const w = os.wasi;
var fdflags: w.fdflags_t = 0x0;