We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f5e21a commit d763685Copy full SHA for d763685
src/conversion/string.md
@@ -38,7 +38,7 @@ trait is implemented for that type. This is implemented for numerous types
38
within the standard library. To obtain this functionality on a user defined type
39
simply implement the [`FromStr`] trait for that type.
40
41
-```rust
+```rust,editable
42
fn main() {
43
let parsed: i32 = "5".parse().unwrap();
44
let turbo_parsed = "10".parse::<i32>().unwrap();
0 commit comments