Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
sffc committed Dec 17, 2024
1 parent e0bd187 commit e264c32
Show file tree
Hide file tree
Showing 13 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion ffi/capi/bindings/c/DateFormatter.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ffi/capi/bindings/c/DateTimeFormatter.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ffi/capi/bindings/cpp/icu4x/DateFormatter.d.hpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions ffi/capi/bindings/cpp/icu4x/DateFormatter.hpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ffi/capi/bindings/cpp/icu4x/DateTimeFormatter.d.hpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions ffi/capi/bindings/cpp/icu4x/DateTimeFormatter.hpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions ffi/capi/bindings/dart/DateFormatter.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions ffi/capi/bindings/dart/DateTimeFormatter.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ffi/capi/bindings/js/DateFormatter.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions ffi/capi/bindings/js/DateFormatter.mjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ffi/capi/bindings/js/DateTimeFormatter.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions ffi/capi/bindings/js/DateTimeFormatter.mjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions ffi/capi/src/datetime_formatter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -309,8 +309,8 @@ pub mod ffi {
}

/// Returns the calendar system used in this formatter.
#[diplomat::rust_link(icu::datetime::DateTimeFormatter::calendar_bcp47, FnInStruct)]
pub fn calendar_bcp47(&self) -> AnyCalendarKind {
#[diplomat::rust_link(icu::datetime::DateTimeFormatter::calendar_kind, FnInStruct)]
pub fn calendar_kind(&self) -> AnyCalendarKind {
self.0.calendar_kind().into()
}
}
Expand Down Expand Up @@ -381,8 +381,8 @@ pub mod ffi {
}

/// Returns the calendar system used in this formatter.
#[diplomat::rust_link(icu::datetime::DateTimeFormatter::calendar_bcp47, FnInStruct)]
pub fn calendar_bcp47(&self) -> AnyCalendarKind {
#[diplomat::rust_link(icu::datetime::DateTimeFormatter::calendar_kind, FnInStruct)]
pub fn calendar_kind(&self) -> AnyCalendarKind {
self.0.calendar_kind().into()
}
}
Expand Down

0 comments on commit e264c32

Please sign in to comment.