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 538538d commit c3f6550Copy full SHA for c3f6550
rust/ql/test/library-tests/type-inference/main.rs
@@ -1109,7 +1109,7 @@ mod method_call_type_conversion {
1109
println!("{:?}", x7);
1110
1111
let x9 : String = "Hello".to_string(); // $ type=x9:String
1112
- // Implicit `String` -> `str` conversion happense via the `Deref` trait:
+ // Implicit `String` -> `str` conversion happens via the `Deref` trait:
1113
// https://doc.rust-lang.org/std/string/struct.String.html#deref.
1114
let u = x9.parse::<u32>(); // $ method=parse type=u:T.u32
1115
}
0 commit comments