Skip to content

Commit 833a2db

Browse files
committed
fix some typos
1 parent eece87c commit 833a2db

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/test/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ impl TestFrontend {
573573
axum_app
574574
.fallback(
575575
build_strangler_service(iron_server.socket)
576-
.expect("cloud not build strangler service"),
576+
.expect("could not build strangler service"),
577577
)
578578
.into_make_service(),
579579
)
@@ -606,7 +606,7 @@ impl TestFrontend {
606606
trace!("joining axum server thread");
607607
self.axum_server_thread
608608
.join()
609-
.expect("could not join axum background thread error");
609+
.expect("could not join axum background thread");
610610

611611
trace!("forgetting about iron");
612612
// Iron is bugged, and it never closes the server even when the listener is dropped. To

src/utils/daemon.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ pub fn start_daemon<C: Context + Send + Clone + 'static>(
124124

125125
start_background_repository_stats_updater(&context)?;
126126

127-
// NOTE: if a anyhow occurred earlier in `start_daemon`, the server will _not_ be joined -
127+
// NOTE: if a error occurred earlier in `start_daemon`, the server will _not_ be joined -
128128
// instead it will get killed when the process exits.
129129
webserver_thread
130130
.join()

0 commit comments

Comments
 (0)