@@ -571,8 +571,9 @@ impl Builder {
571571 /// # Examples
572572 ///
573573 /// ```
574- /// # use tokio_io::AsyncRead;
575- /// use tokio_io::codec::length_delimited::Builder;
574+ /// # extern crate tokio;
575+ /// # use tokio::io::AsyncRead;
576+ /// use tokio::codec::length_delimited::Builder;
576577 ///
577578 /// # fn bind_read<T: AsyncRead>(io: T) {
578579 /// Builder::new()
@@ -614,8 +615,9 @@ impl Builder {
614615 /// # Examples
615616 ///
616617 /// ```
617- /// # use tokio_io::AsyncRead;
618- /// use tokio_io::codec::length_delimited::Builder;
618+ /// # extern crate tokio;
619+ /// # use tokio::io::AsyncRead;
620+ /// use tokio::codec::length_delimited::Builder;
619621 ///
620622 /// # fn bind_read<T: AsyncRead>(io: T) {
621623 /// Builder::new()
@@ -637,8 +639,9 @@ impl Builder {
637639 /// # Examples
638640 ///
639641 /// ```
640- /// # use tokio_io::AsyncRead;
641- /// use tokio_io::codec::length_delimited::Builder;
642+ /// # extern crate tokio;
643+ /// # use tokio::io::AsyncRead;
644+ /// use tokio::codec::length_delimited::Builder;
642645 ///
643646 /// # fn bind_read<T: AsyncRead>(io: T) {
644647 /// Builder::new()
@@ -660,8 +663,9 @@ impl Builder {
660663 /// # Examples
661664 ///
662665 /// ```
663- /// # use tokio_io::AsyncRead;
664- /// use tokio_io::codec::length_delimited::Builder;
666+ /// # extern crate tokio;
667+ /// # use tokio::io::AsyncRead;
668+ /// use tokio::codec::length_delimited::Builder;
665669 ///
666670 /// # fn bind_read<T: AsyncRead>(io: T) {
667671 /// Builder::new()
@@ -693,8 +697,9 @@ impl Builder {
693697 /// # Examples
694698 ///
695699 /// ```
696- /// # use tokio_io::AsyncRead;
697- /// use tokio_io::codec::length_delimited::Builder;
700+ /// # extern crate tokio;
701+ /// # use tokio::io::AsyncRead;
702+ /// use tokio::codec::length_delimited::Builder;
698703 ///
699704 /// # fn bind_read<T: AsyncRead>(io: T) {
700705 /// Builder::new()
@@ -716,8 +721,9 @@ impl Builder {
716721 /// # Examples
717722 ///
718723 /// ```
719- /// # use tokio_io::AsyncRead;
720- /// use tokio_io::codec::length_delimited::Builder;
724+ /// # extern crate tokio;
725+ /// # use tokio::io::AsyncRead;
726+ /// use tokio::codec::length_delimited::Builder;
721727 ///
722728 /// # fn bind_read<T: AsyncRead>(io: T) {
723729 /// Builder::new()
@@ -738,8 +744,9 @@ impl Builder {
738744 /// # Examples
739745 ///
740746 /// ```
741- /// # use tokio_io::AsyncRead;
742- /// use tokio_io::codec::length_delimited::Builder;
747+ /// # extern crate tokio;
748+ /// # use tokio::io::AsyncRead;
749+ /// use tokio::codec::length_delimited::Builder;
743750 ///
744751 /// # fn bind_read<T: AsyncRead>(io: T) {
745752 /// Builder::new()
@@ -758,8 +765,9 @@ impl Builder {
758765 /// # Examples
759766 ///
760767 /// ```
761- /// # use tokio_io::AsyncRead;
762- /// use tokio_io::codec::length_delimited::Builder;
768+ /// # extern crate tokio;
769+ /// # use tokio::io::AsyncRead;
770+ /// use tokio::codec::length_delimited::Builder;
763771 ///
764772 /// # fn bind_read<T: AsyncRead>(io: T) {
765773 /// Builder::new()
@@ -781,8 +789,9 @@ impl Builder {
781789 /// # Examples
782790 ///
783791 /// ```
784- /// # use tokio_io::AsyncRead;
785- /// use tokio_io::codec::length_delimited::Builder;
792+ /// # extern crate tokio;
793+ /// # use tokio::io::AsyncRead;
794+ /// use tokio::codec::length_delimited::Builder;
786795 ///
787796 /// # fn bind_read<T: AsyncRead>(io: T) {
788797 /// Builder::new()
@@ -800,8 +809,9 @@ impl Builder {
800809 /// # Examples
801810 ///
802811 /// ```
803- /// # use tokio_io::AsyncRead;
804- /// use tokio_io::codec::length_delimited::Builder;
812+ /// # extern crate tokio;
813+ /// # use tokio::io::AsyncRead;
814+ /// use tokio::codec::length_delimited::Builder;
805815 ///
806816 /// # fn bind_read<T: AsyncRead>(io: T) {
807817 /// Builder::new()
@@ -828,10 +838,10 @@ impl Builder {
828838 /// # Examples
829839 ///
830840 /// ```
831- /// # extern crate tokio_io ;
841+ /// # extern crate tokio ;
832842 /// # extern crate bytes;
833- /// # use tokio_io ::AsyncWrite;
834- /// # use tokio_io ::codec::length_delimited;
843+ /// # use tokio::io ::AsyncWrite;
844+ /// # use tokio ::codec::length_delimited;
835845 /// # use bytes::BytesMut;
836846 /// # fn write_frame<T: AsyncWrite>(io: T) {
837847 /// # let _: length_delimited::FramedWrite<T, BytesMut> =
@@ -857,10 +867,10 @@ impl Builder {
857867 /// # Examples
858868 ///
859869 /// ```
860- /// # extern crate tokio_io ;
870+ /// # extern crate tokio ;
861871 /// # extern crate bytes;
862- /// # use tokio_io ::{AsyncRead, AsyncWrite};
863- /// # use tokio_io ::codec::length_delimited;
872+ /// # use tokio::io ::{AsyncRead, AsyncWrite};
873+ /// # use tokio ::codec::length_delimited;
864874 /// # use bytes::BytesMut;
865875 /// # fn write_frame<T: AsyncRead + AsyncWrite>(io: T) {
866876 /// # let _: length_delimited::Framed<T, BytesMut> =
0 commit comments