diff --git a/src/bytes.rs b/src/bytes.rs index edc2e3a7ed36e912bfbb930962199cdbad74ad60..3ea3c9956f673b55efc77b19a37d47c912e3f643 100644 --- a/src/bytes.rs +++ b/src/bytes.rs @@ -1111,7 +1111,7 @@ impl BytesMut { /// buf.put(&[0; 64][..]); /// /// let ptr = buf.as_ptr(); - /// let other = buf.drain(); + /// let other = buf.take(); /// /// assert!(buf.is_empty()); /// assert_eq!(buf.capacity(), 64); diff --git a/src/lib.rs b/src/lib.rs index 42c2c8c664a27e481684c8874931513388f1c2de..f4bb0870171d01b8ae14c6e8e0f6e40c702bc381 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -29,12 +29,12 @@ //! buf.put(&b"hello world"[..]); //! buf.put_u16::<BigEndian>(1234); //! -//! let a = buf.drain(); +//! let a = buf.take(); //! assert_eq!(a, b"hello world\x04\xD2"[..]); //! //! buf.put(&b"goodbye world"[..]); //! -//! let b = buf.drain(); +//! let b = buf.take(); //! assert_eq!(b, b"goodbye world"[..]); //! //! assert_eq!(buf.capacity(), 998);