From 6a96044a6802d1f60fa26bc62198ce57e6c18eb8 Mon Sep 17 00:00:00 2001 From: "Ospald, Julian" Date: Tue, 11 Jul 2017 14:36:21 +0200 Subject: [PATCH] Fix examples --- examples/show.rs | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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);