Skip to content

Commit 06d14f3

Browse files
committed
Fix long lines
1 parent 656a2af commit 06d14f3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib/json.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,8 @@ fn from_str_str(s: str) -> (option::t<json>, str) {
9595
escape = true;
9696
cont;
9797
} else if (c == '"') {
98-
ret (some(string(res)), str::char_slice(s, pos, str::char_len(s)));
98+
ret (some(string(res)),
99+
str::char_slice(s, pos, str::char_len(s)));
99100
}
100101
res = res + str::from_char(c);
101102
}

0 commit comments

Comments
 (0)