diff options
| author | Ian Kerins <github@isk.haus> | 2024-02-06 21:54:20 -0500 |
|---|---|---|
| committer | Veikka Tuominen <git@vexu.eu> | 2024-02-07 12:41:40 +0200 |
| commit | ee36131e6a8bf8611f8a6fd55116e98eae2ed63c (patch) | |
| tree | 8a261da5bad5cfd46e543afb6d7ccddd2303b3c1 /lib/std/process.zig | |
| parent | b3aed4e2c8b4d48b8b12f606f56e5aae7ec4693b (diff) | |
| download | zig-ee36131e6a8bf8611f8a6fd55116e98eae2ed63c.tar.gz zig-ee36131e6a8bf8611f8a6fd55116e98eae2ed63c.zip | |
doc: fix typo in getEnvMap
Diffstat (limited to 'lib/std/process.zig')
| -rw-r--r-- | lib/std/process.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/process.zig b/lib/std/process.zig index e51076d889..397e6971e6 100644 --- 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 { |
