-
Notifications
You must be signed in to change notification settings - Fork 184
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
Rename data key to data marker [info] #5003
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Through provider/blob. Good so far
components/experimental/tests/transliterate/data/baked/macros.rs
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Down through provider/core
provider/core/src/lib.rs
Outdated
pub use crate::DataKey; | ||
pub use crate::DataLocale; | ||
#[doc(no_inline)] | ||
pub use crate::DataKeyAttributes; | ||
pub use crate::DataMarker; | ||
#[doc(no_inline)] | ||
pub use crate::DataKeyHash; | ||
pub use crate::DataMarkerAttributes; | ||
#[doc(no_inline)] | ||
pub use crate::DataLocale; | ||
pub use crate::DataMarkerInfo; | ||
#[doc(no_inline)] | ||
pub use crate::DataMarker; | ||
pub use crate::DataMarkerPathHash; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These entries were re-ordered. For my own record:
Old | New |
---|---|
DataKey | DataMarkerInfo |
DataKeyAttributes | DataMarkerAttributes |
DataKeyHash | DataMarkerPathHash |
DataLocale | DataLocale |
DataMarker | DataMarker |
#4991