Skip to content

Commit

Permalink
ws
Browse files Browse the repository at this point in the history
  • Loading branch information
Manishearth committed Dec 12, 2024
1 parent 43577ed commit 92eeb40
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ffi/capi/src/properties_maps.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ pub mod ffi {
pub fn create_east_asian_width() -> Box<CodePointMapData8> {
convert_8(icu_properties::CodePointMapData::<EastAsianWidth>::new().static_to_owned())
}
/// Create a map for the `East_Asian_Width` property, using a particular data source.

/// Create a map for the `East_Asian_Width` property, using a particular data source.
#[diplomat::rust_link(icu::properties::props::EastAsianWidth, Struct)]
#[diplomat::attr(supports = fallible_constructors, named_constructor = "east_asian_width_with_provider")]
pub fn create_east_asian_width_with_provider(
Expand Down Expand Up @@ -316,8 +316,8 @@ pub mod ffi {
pub fn create_joining_type() -> Box<CodePointMapData8> {
convert_8(icu_properties::CodePointMapData::<JoiningType>::new().static_to_owned())
}
/// Create a map for the `Joining_Type` property, using a particular data source.

/// Create a map for the `Joining_Type` property, using a particular data source.
#[diplomat::rust_link(icu::properties::props::JoiningType, Struct)]
#[diplomat::attr(supports = fallible_constructors, named_constructor = "joining_type_with_provider")]
pub fn create_joining_type_with_provider(
Expand Down Expand Up @@ -408,8 +408,8 @@ pub mod ffi {
self.0.as_borrowed().get_set_for_value(value),
))
}
/// Create a map for the `Script` property, using compiled data.

/// Create a map for the `Script` property, using compiled data.
#[diplomat::rust_link(icu::properties::props::Script, Struct)]
#[diplomat::attr(auto, named_constructor = "script")]
#[cfg(feature = "compiled_data")]
Expand All @@ -422,8 +422,8 @@ pub mod ffi {
.unwrap();
Box::new(CodePointMapData16(data))
}
/// Create a map for the `Script` property, using a particular data source.

/// Create a map for the `Script` property, using a particular data source.
#[diplomat::rust_link(icu::properties::props::Script, Struct)]
#[diplomat::attr(supports = fallible_constructors, named_constructor = "script_with_provider")]
pub fn create_script_with_provider(
Expand Down

0 comments on commit 92eeb40

Please sign in to comment.