Skip to content

Commit b68c42e

Browse files
committed
Fixing casemap docs (#4101)
1 parent 9e7e9a2 commit b68c42e

File tree

5 files changed

+2
-37
lines changed

5 files changed

+2
-37
lines changed

components/casemap/README.md

Lines changed: 1 addition & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/casemap/src/casemapper.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,6 @@ use writeable::Writeable;
3333
/// "γειά σου κόσμε"
3434
/// );
3535
/// ```
36-
///
37-
/// <div class="stab unstable">
38-
/// 🚧 This code is experimental; it may change at any time, in breaking or non-breaking ways,
39-
/// including in SemVer minor releases. It can be enabled with the "experimental" Cargo feature
40-
/// of the icu meta-crate. Use with caution.
41-
/// <a href="https://github.com/unicode-org/icu4x/issues/2535">#2535</a>
42-
/// </div>
4336
#[derive(Clone, Debug)]
4437
pub struct CaseMapper {
4538
pub(crate) data: DataPayload<CaseMapV1Marker>,

components/casemap/src/closer.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,6 @@ use icu_provider::prelude::*;
3434
/// assert!(set.contains('ß'));
3535
/// assert!(set.contains('ẞ'));
3636
/// ```
37-
///
38-
/// <div class="stab unstable">
39-
/// 🚧 This code is experimental; it may change at any time, in breaking or non-breaking ways,
40-
/// including in SemVer minor releases. It can be enabled with the "experimental" Cargo feature
41-
/// of the icu meta-crate. Use with caution.
42-
/// <a href="https://github.com/unicode-org/icu4x/issues/2535">#2535</a>
43-
/// </div>
4437
#[derive(Clone, Debug)]
4538
pub struct CaseMapCloser<CM> {
4639
cm: CM,

components/casemap/src/lib.rs

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// called LICENSE at the top level of the ICU4X source tree
33
// (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).
44

5-
//! 🚧 \[Experimental\] Case mapping for Unicode characters and strings.
5+
//! Case mapping for Unicode characters and strings.
66
//!
77
//! This module is published as its own crate ([`icu_casemap`](https://docs.rs/icu_casemap/latest/icu_casemap/))
88
//! and as part of the [`icu`](https://docs.rs/icu/latest/icu/) crate. See the latter for more details on the ICU4X project.
@@ -25,13 +25,6 @@
2525
//! );
2626
//! ```
2727
//!
28-
//! <div class="stab unstable">
29-
//! 🚧 This code is experimental; it may change at any time, in breaking or non-breaking ways,
30-
//! including in SemVer minor releases. It can be enabled with the "experimental" Cargo feature
31-
//! of the icu meta-crate. Use with caution.
32-
//! <a href="https://github.com/unicode-org/icu4x/issues/2535">#2535</a>
33-
//! </div>
34-
//!
3528
//! [`ICU4X`]: ../icu/index.html
3629
3730
// https://github.com/unicode-org/icu4x/blob/main/docs/process/boilerplate.md#library-annotations

components/casemap/src/titlecase.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -198,13 +198,6 @@ pub struct TitlecaseOptions {
198198
/// assert_eq!(cm.titlecase_segment_to_string("ijkdijk", &root, default_options), "Ijkdijk");
199199
/// assert_eq!(cm.titlecase_segment_to_string("ijkdijk", &langid!("nl"), default_options), "IJkdijk"); // Dutch IJ digraph
200200
/// ```
201-
///
202-
/// <div class="stab unstable">
203-
/// 🚧 This code is experimental; it may change at any time, in breaking or non-breaking ways,
204-
/// including in SemVer minor releases. It can be enabled with the "experimental" Cargo feature
205-
/// of the icu meta-crate. Use with caution.
206-
/// <a href="https://github.com/unicode-org/icu4x/issues/2535">#2535</a>
207-
/// </div>
208201
#[derive(Clone, Debug)]
209202
pub struct TitlecaseMapper<CM> {
210203
cm: CM,

0 commit comments

Comments
 (0)