Skip to content

Commit 0289bd4

Browse files
committed
wip
1 parent 1175630 commit 0289bd4

File tree

13 files changed

+1966
-2012
lines changed

13 files changed

+1966
-2012
lines changed

provider/core/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ This trait is normally implemented using the [`impl_dyn_provider!`] macro using
9898

9999
[`ICU4X`]: ../icu/index.html
100100
[`DataProvider`]: data_provider::DataProvider
101-
[`ResourceKey`]: resource::ResourceKey
102-
[`ResourceOptions`]: resource::ResourceOptions
101+
[`ResourceKey`]: marker::ResourceKey
102+
[`ResourceOptions`]: request::ResourceOptions
103103
[`IterableDynProvider`]: datagen::IterableDynProvider
104104
[`IterableResourceProvider`]: datagen::IterableResourceProvider
105105
[`InvariantDataProvider`]: inv::InvariantDataProvider

provider/core/src/any.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,6 @@ where
348348
mod test {
349349
use super::*;
350350
use crate::hello_world::*;
351-
use crate::marker::CowStrMarker;
352351
use alloc::borrow::Cow;
353352

354353
const CONST_DATA: HelloWorldV1<'static> = HelloWorldV1 {
@@ -369,7 +368,7 @@ mod test {
369368

370369
let err = any_payload.downcast::<CowStrMarker>().unwrap_err();
371370
assert_eq!(
372-
"ICU4X data error: Mismatched types: tried to downcast with icu_provider::marker::impls::CowStrMarker, but actual type is different: icu_provider::hello_world::HelloWorldV1Marker",
371+
"ICU4X data error: Mismatched types: tried to downcast with icu_provider::hello_world::CowStrMarker, but actual type is different: icu_provider::hello_world::HelloWorldV1Marker",
373372
format!("{}", err)
374373
);
375374
}

0 commit comments

Comments
 (0)