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
1 changed files with 3 additions and 1 deletions

View File

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