Skip to content

Commit 3f8eb24

Browse files
committed
Fix itertools count repr
1 parent c07d865 commit 3f8eb24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/src/stdlib/itertools.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ mod decl {
225225
let step = format!("{}", self.step.clone());
226226
if step != "1" {
227227
cur.push_str(", ");
228-
cur.push_str(&step.to_string());
228+
cur.push_str(&step);
229229
}
230230
Ok(format!("count({})", cur))
231231
}

0 commit comments

Comments
 (0)