1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-16 10:51:42 +02:00

Merge pull request #2027 from yerke/patch-2

Fix formatting in strings4.rs
This commit is contained in:
Mo 2024-07-06 22:22:27 +02:00 committed by GitHub
commit 48697b8225
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,6 +4,7 @@ fn placeholder() {}
fn string_slice(arg: &str) {
println!("{arg}");
}
fn string(arg: String) {
println!("{arg}");
}