Missing ) (#444)

This commit is contained in:
Wade Mealing 2020-04-21 04:26:40 +10:00 committed by GitHub
parent 7dd55eb126
commit 0a6368d681
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -157,7 +157,7 @@ fn show_next(s: &mut Cursive) {
.title("Question 1")
.button("Yes!", |s| ()) //< Do something interesting here...
.button("No!", |s| ()) //< And here as well...
.button("Uh?", |s| ()); //< And finally here too.
.button("Uh?", |s| ())); //< And finally here too.
}
```