Adjust comments

This commit is contained in:
Ivan Molodetskikh 2024-03-06 21:01:00 +04:00
parent 431f070481
commit cedfd4944c
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ systemd = ["dbus"]
xdp-gnome-screencast = ["dbus", "pipewire"] xdp-gnome-screencast = ["dbus", "pipewire"]
# Enables the Tracy profiler instrumentation. # Enables the Tracy profiler instrumentation.
profile-with-tracy = ["profiling/profile-with-tracy", "tracy-client/default"] profile-with-tracy = ["profiling/profile-with-tracy", "tracy-client/default"]
# Enables dinit integration (global environment) # Enables dinit integration (global environment).
dinit = [] dinit = []
[profile.release] [profile.release]

View File

@ -213,7 +213,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
warn!("error notifying systemd: {err:?}"); 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() { if let Err(err) = notify_fd() {
warn!("error notifying fd: {err:?}"); warn!("error notifying fd: {err:?}");
} }