Skip to content

Commit d79a07d

Browse files
lahwaaczKobzol
authored andcommitted
Fix typo in error message
1 parent bbeeb89 commit d79a07d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • crates/hyperqueue/src/client/commands

crates/hyperqueue/src/client/commands/worker.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ fn load_hostnames(hostfile: &Path) -> anyhow::Result<Vec<Hostname>> {
579579
if let Some((host, port)) = line.split_once(':') {
580580
let port = port
581581
.parse::<u16>()
582-
.map_err(|e| anyhow::anyhow!("Cannot parser port from {line}: {e:?}"))?;
582+
.map_err(|e| anyhow::anyhow!("Cannot parse port from {line}: {e:?}"))?;
583583
Ok(Hostname {
584584
host: host.to_string(),
585585
port: Some(port),

0 commit comments

Comments
 (0)