Commit ee36131e6a

Ian Kerins <github@isk.haus>
2024-02-07 03:54:20
doc: fix typo in getEnvMap
1 parent b3aed4e
Changed files (1)
lib
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 {