about summary refs log tree commit diff
path: root/src/liballoc/string.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/liballoc/string.rs')
-rw-r--r--src/liballoc/string.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/liballoc/string.rs b/src/liballoc/string.rs
index fa15e9ad901..d8f46374ce2 100644
--- a/src/liballoc/string.rs
+++ b/src/liballoc/string.rs
@@ -56,11 +56,11 @@ use core::ptr;
 use core::str::pattern::Pattern;
 use core::str::lossy;
 
-use collections::CollectionAllocErr;
-use borrow::{Cow, ToOwned};
-use boxed::Box;
-use str::{self, from_boxed_utf8_unchecked, FromStr, Utf8Error, Chars};
-use vec::Vec;
+use crate::collections::CollectionAllocErr;
+use crate::borrow::{Cow, ToOwned};
+use crate::boxed::Box;
+use crate::str::{self, from_boxed_utf8_unchecked, FromStr, Utf8Error, Chars};
+use crate::vec::Vec;
 
 /// A UTF-8 encoded, growable string.
 ///