Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion library/alloc/src/str.rs
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ impl str {
/// assert_eq!(decomp.to_casefold_unnormalized(), "a\u{030A}");
/// ```
///
/// [normalization]: https://www.unicode.org/faq/normalization
/// [normalization]: https://www.unicode.org/faq/normalization.html
#[cfg(not(no_global_oom_handling))]
#[rustc_allow_incoherent_impl]
#[must_use = "this returns the case-folded string as a new String, \
Expand Down
2 changes: 1 addition & 1 deletion library/core/src/char/methods.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1647,7 +1647,7 @@ impl char {
///
/// holds across languages.
///
/// [normalization]: https://www.unicode.org/faq/normalization
/// [normalization]: https://www.unicode.org/faq/normalization.html
#[must_use = "this returns the case-folded character as a new iterator, \
without modifying the original"]
#[unstable(feature = "casefold", issue = "154742")]
Expand Down
2 changes: 1 addition & 1 deletion library/core/src/str/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2902,7 +2902,7 @@ impl str {
/// assert!(!comp.eq_ignore_case_unnormalized(decomp));
/// ```
///
/// [normalization]: https://www.unicode.org/faq/normalization
/// [normalization]: https://www.unicode.org/faq/normalization.html
#[unstable(feature = "casefold", issue = "154742")]
#[must_use]
#[inline]
Expand Down
Loading