Update doc example
This commit is contained in:
parent
94bb46164f
commit
4b0aaab709
24
src/lib.rs
24
src/lib.rs
@ -1,20 +1,18 @@
|
||||
//! Rustic bindings to [libnotify](https://developer.gnome.org/libnotify/)
|
||||
//!
|
||||
//! ```rust
|
||||
//! extern crate libnotify;
|
||||
//!extern crate libnotify;
|
||||
//!
|
||||
//!fn main() {
|
||||
//! let notify = libnotify::Context::new("hello").unwrap_or_else(|e| {
|
||||
//! panic!("{}", e);
|
||||
//! });
|
||||
//! let body_text = Some("This is the optional body text.");
|
||||
//! let n = notify.new_notification("This is the summary.", body_text, None)
|
||||
//! .unwrap_or_else(|e| panic!("{}", e));
|
||||
//! n.show().unwrap_or_else(|e| panic!("{}", e));
|
||||
//!}
|
||||
//!
|
||||
//! fn main() {
|
||||
//! let notify = libnotify::Context::new("hello").unwrap_or_else(|e| {
|
||||
//! panic!("{}", e);
|
||||
//! });
|
||||
//! let body_text = Some("This is the optional body text.");
|
||||
//! let n = notify.new_notification("This is the summary.",
|
||||
//! body_text,
|
||||
//! None).unwrap_or_else(|e| {
|
||||
//! panic!("{}", e);
|
||||
//! });
|
||||
//! n.show().ok().expect("Failed to show notification");
|
||||
//! }
|
||||
//! ```
|
||||
|
||||
extern crate libnotify_sys as sys;
|
||||
|
Loading…
Reference in New Issue
Block a user