File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2352,7 +2352,7 @@ impl<'a> ExactSizeIterator for IterU32Digits<'a> {
2352
2352
2353
2353
#[ cfg( not( u64_digit) ) ]
2354
2354
pub struct IterU32Digits < ' a > {
2355
- it : std :: slice:: Iter < ' a , u32 > ,
2355
+ it : core :: slice:: Iter < ' a , u32 > ,
2356
2356
}
2357
2357
#[ cfg( not( u64_digit) ) ]
2358
2358
impl < ' a > IterU32Digits < ' a > {
@@ -2394,7 +2394,7 @@ impl<'a> FusedIterator for IterU32Digits<'a> {}
2394
2394
2395
2395
#[ cfg( not( u64_digit) ) ]
2396
2396
pub struct IterU64Digits < ' a > {
2397
- it : std :: slice:: Chunks < ' a , u32 > ,
2397
+ it : core :: slice:: Chunks < ' a , u32 > ,
2398
2398
}
2399
2399
#[ cfg( not( u64_digit) ) ]
2400
2400
impl < ' a > IterU64Digits < ' a > {
@@ -2443,7 +2443,7 @@ impl<'a> ExactSizeIterator for IterU64Digits<'a> {
2443
2443
2444
2444
#[ cfg( u64_digit) ]
2445
2445
pub struct IterU64Digits < ' a > {
2446
- it : std :: slice:: Iter < ' a , u64 > ,
2446
+ it : core :: slice:: Iter < ' a , u64 > ,
2447
2447
}
2448
2448
#[ cfg( u64_digit) ]
2449
2449
impl < ' a > IterU64Digits < ' a > {
You can’t perform that action at this time.
0 commit comments