Skip to content

Commit

Permalink
Fix long lines
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Nov 7, 2011
1 parent 656a2af commit 06d14f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/lib/json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ fn from_str_str(s: str) -> (option::t<json>, str) {
escape = true;
cont;
} else if (c == '"') {
ret (some(string(res)), str::char_slice(s, pos, str::char_len(s)));
ret (some(string(res)),
str::char_slice(s, pos, str::char_len(s)));
}
res = res + str::from_char(c);
}
Expand Down

0 comments on commit 06d14f3

Please sign in to comment.