Skip to content

Commit 1657187

Browse files
authored
Merge pull request #2077 from dtolnay-contrib/offrotation
Fix off rotation count in team-stats
2 parents 803cde7 + 2e9ed97 commit 1657187

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zulip.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ async fn team_status_cmd(ctx: &Context, team_name: &str) -> anyhow::Result<Optio
382382
writeln!(
383383
msg,
384384
"{}",
385-
table_header(&format!("OFF rotation ({})", on_rotation.len()))
385+
table_header(&format!("OFF rotation ({})", off_rotation.len()))
386386
)?;
387387
writeln!(msg, "{}\n", off_rotation.join("\n"))?;
388388
}

0 commit comments

Comments
 (0)