commit ee36131e6a8bf8611f8a6fd55116e98eae2ed63c (tree)
parent b3aed4e2c8b4d48b8b12f606f56e5aae7ec4693b
Author: Ian Kerins <github@isk.haus>
Date: Tue, 6 Feb 2024 21:54:20 -0500
doc: fix typo in getEnvMap
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/std/process.zig b/lib/std/process.zig
@@ -247,7 +247,7 @@ test "EnvMap" {
}
/// Returns a snapshot of the environment variables of the current process.
-/// Any modifications to the resulting EnvMap will not be not reflected in the environment, and
+/// Any modifications to the resulting EnvMap will not be reflected in the environment, and
/// likewise, any future modifications to the environment will not be reflected in the EnvMap.
/// Caller owns resulting `EnvMap` and should call its `deinit` fn when done.
pub fn getEnvMap(allocator: Allocator) !EnvMap {