Skip to content

Update docs for ToUppercase/ToLowercase structs #23526

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 20, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/libunicode/char.rs
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,8 @@ impl CharExt for char {
}

/// An iterator over the lowercase mapping of a given character, returned from
/// the `lowercase` method on characters.
/// the [`to_lowercase` method](../primitive.char.html#method.to_lowercase) on
/// characters.
#[stable(feature = "rust1", since = "1.0.0")]
pub struct ToLowercase(Option<char>);

Expand All @@ -473,7 +474,8 @@ impl Iterator for ToLowercase {
}

/// An iterator over the uppercase mapping of a given character, returned from
/// the `uppercase` method on characters.
/// the [`to_uppercase` method](../primitive.char.html#method.to_uppercase) on
/// characters.
#[stable(feature = "rust1", since = "1.0.0")]
pub struct ToUppercase(Option<char>);

Expand Down