diff options
| author | peelz <peelz.dev@gmail.com> | 2025-03-29 10:45:54 -0400 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2025-03-29 07:56:47 -0700 |
| commit | b2c34e7fe94a12a65083ac73759672427ea2ccbf (patch) | |
| tree | 9cec9ee9f9c91a389dd750b44135f0de33e6d0ee /src | |
| parent | dcc291d70159aeec7d0245668477539d2da56f72 (diff) | |
| download | niri-b2c34e7fe94a12a65083ac73759672427ea2ccbf.tar.gz niri-b2c34e7fe94a12a65083ac73759672427ea2ccbf.tar.bz2 niri-b2c34e7fe94a12a65083ac73759672427ea2ccbf.zip | |
Fix typo in comment
Diffstat (limited to 'src')
| -rw-r--r-- | src/utils/spawning.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/spawning.rs b/src/utils/spawning.rs index 38ac52e6..286df68f 100644 --- a/src/utils/spawning.rs +++ b/src/utils/spawning.rs @@ -244,7 +244,7 @@ mod systemd { close(fd); } - // Convert the our FDs to OwnedFd, which will close them in all of our fork paths. + // Convert the FDs to OwnedFd, which will close them in all of our fork paths. let pipe_pid_write = pipe_pid_write_fd.take().map(|fd| OwnedFd::from_raw_fd(fd)); let pipe_wait_read = pipe_wait_read_fd.take().map(|fd| OwnedFd::from_raw_fd(fd)); |
