Skip to content

Commit 1eb6eff

Browse files
committed
fix some typos
1 parent 3b5bcf8 commit 1eb6eff

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
@@ -575,7 +575,7 @@ impl TestFrontend {
575575
axum_app
576576
.fallback(
577577
build_strangler_service(iron_server.socket)
578-
.expect("cloud not build strangler service"),
578+
.expect("could not build strangler service"),
579579
)
580580
.into_make_service(),
581581
)
@@ -608,7 +608,7 @@ impl TestFrontend {
608608
trace!("joining axum server thread");
609609
self.axum_server_thread
610610
.join()
611-
.expect("could not join axum background thread error");
611+
.expect("could not join axum background thread");
612612

613613
trace!("forgetting about iron");
614614
// 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)