Skip to content

Commit e322103

Browse files
committed
---
yaml --- r: 5386 b: refs/heads/master c: 58d812f h: refs/heads/master v: v3
1 parent 8217a3e commit e322103

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 12d7363469e5b65201bda9579e9dd50ae5c70e35
2+
refs/heads/master: 58d812f0f8c664b606ef3b087fd5f69e5f988924

trunk/src/fuzzer/ivec_fuzz.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ fn vec_to_str(v: [int]) -> str {
8484
let s = "[";
8585
while i < len(v) {
8686
s += int::str(v[i]);
87-
if i + 1u < len(v) { s += ", " }
87+
if i + 1u < len(v) { s += ", "; }
8888
i += 1u;
8989
}
9090
ret s + "]";

0 commit comments

Comments
 (0)