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

Merge pull request #1682 from OfirLauber/main

chore: fix comment in enums3.rs
This commit is contained in:
liv 2023-09-21 12:01:16 +02:00 committed by GitHub
commit 1552822404
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,10 +41,9 @@ impl State {
}
fn process(&mut self, message: Message) {
// TODO: create a match expression to process the different message
// variants
// Remember: When passing a tuple as a function argument, you'll need
// extra parentheses: fn function((t, u, p, l, e))
// TODO: create a match expression to process the different message variants
// Remember: When passing a tuple as a function argument, you'll need extra parentheses:
// fn function((t, u, p, l, e))
}
}