Skip to content

Commit 68dd9ba

Browse files
committed
formatting
1 parent fc2a863 commit 68dd9ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/slice/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4124,7 +4124,7 @@ impl<T> [T] {
41244124
}
41254125
)]
41264126
//The following clause guarantees that middle is of maximum size within self
4127-
//If U or T are ZSTs, then middle has size zero, so we adapt the check in that case
4127+
//If U or T are ZSTs, then middle has size zero, so we adapt the check in that case
41284128
#[ensures(|(prefix, _, suffix): &(&mut [T], &mut [U], &mut [T])|
41294129
((U::IS_ZST || T::IS_ZST) && prefix.len() == old(self.len())) || (
41304130
(prefix.len() * size_of::<T>() < align_of::<U>()) &&

0 commit comments

Comments
 (0)