diff options
| author | bors <bors@rust-lang.org> | 2014-05-28 09:26:42 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-05-28 09:26:42 -0700 |
| commit | cd6fb59ee266d0eeb60a9bcfdd1c513a88a50c5c (patch) | |
| tree | 994e14e7448bca1782387f66f376e6ec84c59d01 /src/libstd | |
| parent | 9659a509572106e4f7eaee7d87d993f56d33d8be (diff) | |
| parent | 8c5a8e10b25fdd2e12de78f04d2f538a22776024 (diff) | |
| download | rust-cd6fb59ee266d0eeb60a9bcfdd1c513a88a50c5c.tar.gz rust-cd6fb59ee266d0eeb60a9bcfdd1c513a88a50c5c.zip | |
auto merge of #14437 : Sawyer47/rust/utf16-items, r=alexcrichton
According to Rust's style guide acronyms should be CamelCase.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/str.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/str.rs b/src/libstd/str.rs index 9e15612c72b..eb97f0f6a28 100644 --- a/src/libstd/str.rs +++ b/src/libstd/str.rs @@ -86,8 +86,8 @@ use vec::Vec; pub use core::str::{from_utf8, CharEq, Chars, CharOffsets}; pub use core::str::{Bytes, CharSplits}; pub use core::str::{CharSplitsN, Words, AnyLines, MatchIndices, StrSplits}; -pub use core::str::{eq_slice, is_utf8, is_utf16, UTF16Items}; -pub use core::str::{UTF16Item, ScalarValue, LoneSurrogate, utf16_items}; +pub use core::str::{eq_slice, is_utf8, is_utf16, Utf16Items}; +pub use core::str::{Utf16Item, ScalarValue, LoneSurrogate, utf16_items}; pub use core::str::{truncate_utf16_at_nul, utf8_char_width, CharRange}; pub use core::str::{Str, StrSlice}; |
