1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-18 23:41:37 +02:00

Remove dot for copy-pasta

This commit is contained in:
mo8it 2024-08-17 15:45:02 +02:00
parent 69b4fd49fc
commit ca5d5f0a49

View File

@ -6,7 +6,7 @@
// of `Option<String>`.
fn generate_nametag_text(name: String) -> Option<String> {
if name.is_empty() {
// Empty names aren't allowed.
// Empty names aren't allowed
None
} else {
Some(format!("Hi! My name is {name}"))