Skip to content

Commit 37cb8d0

Browse files
committed
spelling: unexpectedly
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
1 parent 704bc05 commit 37cb8d0

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

tests/source/expr.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -471,14 +471,18 @@ fn issue3226() {
471471
{
472472
{
473473
{
474-
return Err(ErrorKind::ManagementInterfaceError("Server exited unexpectedly").into())
474+
{
475+
return Err(ErrorKind::ManagementInterfaceError("Server exited unexpectedly").into())
476+
}
475477
}
476478
}
477479
}
478480
{
479481
{
480482
{
481-
break Err(ErrorKind::ManagementInterfaceError("Server exited unexpectedlyy").into())
483+
{
484+
break Err(ErrorKind::ManagementInterfaceError("Server exited unexpectedly").into())
485+
}
482486
}
483487
}
484488
}

tests/target/expr.rs

+10-6
Original file line numberDiff line numberDiff line change
@@ -550,18 +550,22 @@ fn issue3226() {
550550
{
551551
{
552552
{
553-
return Err(
554-
ErrorKind::ManagementInterfaceError("Server exited unexpectedly").into(),
555-
);
553+
{
554+
return Err(
555+
ErrorKind::ManagementInterfaceError("Server exited unexpectedly").into(),
556+
);
557+
}
556558
}
557559
}
558560
}
559561
{
560562
{
561563
{
562-
break Err(
563-
ErrorKind::ManagementInterfaceError("Server exited unexpectedlyy").into(),
564-
);
564+
{
565+
break Err(
566+
ErrorKind::ManagementInterfaceError("Server exited unexpectedly").into(),
567+
);
568+
}
565569
}
566570
}
567571
}

0 commit comments

Comments
 (0)