diff options
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | src/main.rs | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -107,7 +107,7 @@ systemd = ["dbus"] xdp-gnome-screencast = ["dbus", "pipewire"] # Enables the Tracy profiler instrumentation. profile-with-tracy = ["profiling/profile-with-tracy", "tracy-client/default"] -# Enables dinit integration (global environment) +# Enables dinit integration (global environment). dinit = [] [profile.release] diff --git a/src/main.rs b/src/main.rs index 68a9701a..edb800ad 100644 --- a/src/main.rs +++ b/src/main.rs @@ -213,7 +213,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> { warn!("error notifying systemd: {err:?}"); }; - // Send ready notification to specified file descriptor + // Send ready notification to the NOTIFY_FD file descriptor. if let Err(err) = notify_fd() { warn!("error notifying fd: {err:?}"); } |
