Updated reference in Wrapper for RFC 248.

This commit is contained in:
Aaron Weiss 2014-11-29 02:58:05 -05:00
parent d7517c9666
commit b199480025
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
[package]
name = "irc"
version = "0.1.1"
version = "0.1.2"
description = "A simple, thread-safe IRC client library."
authors = ["Aaron Weiss <aaronweiss74@gmail.com>"]
license = "Unlicense"

View file

@ -11,7 +11,7 @@ use server::{Server, ServerIterator};
/// Functionality-providing wrapper for Server.
#[experimental]
pub struct Wrapper<'a, T> where T: IrcStream {
server: &'a Server<'a, T> + 'a
server: &'a (Server<'a, T> + 'a)
}
impl<'a, T> Server<'a, T> for Wrapper<'a, T> where T: IrcStream {