diff --git a/examples/show.rs b/examples/show.rs index e74ac96e..71c3c4be 100644 --- a/examples/show.rs +++ b/examples/show.rs @@ -3,7 +3,7 @@ extern crate libnotify; fn main() { // Init libnotify libnotify::init("myapp"); - // Create a new notification and show it + // Create a new notification (doesn't show it yet) let n = libnotify::Notification::new("Summary", Some("Optional Body"), None); // Show the notification diff --git a/src/lib.rs b/src/lib.rs index 9582578b..8e02e02d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,7 +6,7 @@ //! fn main() { //! // Init libnotify //! libnotify::init("myapp").unwrap(); -//! // Create a new notification and show it +//! // Create a new notification (doesn't show it yet) //! let n = libnotify::Notification::new("Summary", //! Some("Optional Body"), //! None);