diff --git a/src/conn.rs b/src/conn.rs index 6c82c58..57f9a41 100644 --- a/src/conn.rs +++ b/src/conn.rs @@ -1,4 +1,4 @@ -//! Thread-safe connections on any IrcWriters and IrcReaders. +//! Thread-safe connections on IrcStreams. #![experimental] use std::sync::{Mutex, MutexGuard}; use std::io::{BufferedStream, IoResult, MemWriter, TcpStream}; diff --git a/src/data/config.rs b/src/data/config.rs index 146c10d..5c96f4c 100644 --- a/src/data/config.rs +++ b/src/data/config.rs @@ -24,6 +24,7 @@ pub struct Config { /// The port to connect on. pub port: u16, /// Whether or not to use SSL. + /// Bots will automatically panic if this is enabled without SSL support. pub use_ssl: bool, /// A list of channels to join on connection. pub channels: Vec, diff --git a/src/data/mod.rs b/src/data/mod.rs index b1e14fd..18ecc55 100644 --- a/src/data/mod.rs +++ b/src/data/mod.rs @@ -1,5 +1,5 @@ //! Data related to IRC functionality. -#![experimental] +#![unstable] pub use data::config::Config; pub use data::message::Message;