Skip to content

Commit 0849fa1

Browse files
authored
Merge pull request #1120 from MCluck90/to-and-from-strings-fix
Fixed curly braces in the `To and from Strings` chapter to be parentheses
2 parents 51e930f + c8b58db commit 0849fa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/conversion/string.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ fn main() {
4242
let turbo_parsed = "10".parse::<i32>().unwrap();
4343

4444
let sum = parsed + turbo_parsed;
45-
println!{"Sum: {:?}", sum};
45+
println!("Sum: {:?}", sum);
4646
}
4747
```
4848

0 commit comments

Comments
 (0)