From 0a6368d6813edda79658401357ccc4208273828c Mon Sep 17 00:00:00 2001 From: Wade Mealing Date: Tue, 21 Apr 2020 04:26:40 +1000 Subject: [PATCH] Missing ) (#444) --- doc/tutorial_2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial_2.md b/doc/tutorial_2.md index 0b4baca..8f9e35a 100644 --- a/doc/tutorial_2.md +++ b/doc/tutorial_2.md @@ -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. } ```