Add info to doc that there can only be one context at a time

This commit is contained in:
Mika Attila 2015-03-08 17:11:44 +01:00
parent 2e317752c2
commit 4fa9d1d959

View File

@ -24,7 +24,9 @@ pub enum NotificationCreationError {
Unknown Unknown
} }
/// The context which within libnotify operates /// The context which within libnotify operates.
///
/// Only one context can exist at a time.
pub struct Context; pub struct Context;
impl Context { impl Context {