authorgravatar for github@isk.hausIan Kerins <github@isk.haus> 2024-02-06 21:54:20-05:00
committergravatar for git@vexu.euVeikka Tuominen <git@vexu.eu> 2024-02-07 12:41:40+02:00
logee36131e6a8bf8611f8a6fd55116e98eae2ed63c
tree8a261da5bad5cfd46e543afb6d7ccddd2303b3c1
parentb3aed4e2c8b4d48b8b12f606f56e5aae7ec4693b

doc: fix typo in getEnvMap


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/process.zig+1-1
......@@ -247,7 +247,7 @@ test "EnvMap" {
247247}
248248
249249/// Returns a snapshot of the environment variables of the current process.
250/// Any modifications to the resulting EnvMap will not be not reflected in the environment, and
250/// Any modifications to the resulting EnvMap will not be reflected in the environment, and
251251/// likewise, any future modifications to the environment will not be reflected in the EnvMap.
252252/// Caller owns resulting `EnvMap` and should call its `deinit` fn when done.
253253pub fn getEnvMap(allocator: Allocator) !EnvMap {