Skip to content

Commit ffce205

Browse files
authored
chrore: fixup rust 1.83 formatting (#1615)
1 parent 057aa1f commit ffce205

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

der/src/referenced.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ impl<T> OwnedToRef for Option<T>
3838
where
3939
T: OwnedToRef,
4040
{
41-
type Borrowed<'a> = Option<T::Borrowed<'a>> where T: 'a;
41+
type Borrowed<'a>
42+
= Option<T::Borrowed<'a>>
43+
where
44+
T: 'a;
4245

4346
fn owned_to_ref(&self) -> Self::Borrowed<'_> {
4447
self.as_ref().map(|o| o.owned_to_ref())

0 commit comments

Comments
 (0)