Skip to content

Commit

Permalink
Merge pull request #1120 from MCluck90/to-and-from-strings-fix
Browse files Browse the repository at this point in the history
Fixed curly braces in the `To and from Strings` chapter to be parentheses
  • Loading branch information
frewsxcv authored Dec 2, 2018
2 parents 51e930f + c8b58db commit 0849fa1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/conversion/string.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ fn main() {
let turbo_parsed = "10".parse::<i32>().unwrap();

let sum = parsed + turbo_parsed;
println!{"Sum: {:?}", sum};
println!("Sum: {:?}", sum);
}
```

Expand Down

0 comments on commit 0849fa1

Please sign in to comment.