clean up wording of docs

This commit is contained in:
Ty Overby 2015-03-08 15:42:35 -07:00
parent 0ebd6a2b0f
commit bf4d6f637b
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ enum RefBoxInner<'a, T: 'a> {
}
impl <'a, T> RefBox<'a, T> {
/// Creates a new RefBox that looks at a value.
/// Creates a new RefBox that looks at a borrowed value.
pub fn new(v: &'a T) -> RefBox<'a, T> {
RefBox {
inner: RefBoxInner::Ref(v)