Skip to content

Commit 32742d0

Browse files
committed
Merge pull request #1594 from mrshpot/master
doc: Fix minor typo in tutorial
2 parents 29bebd3 + 1bbd97c commit 32742d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/tutorial.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,7 @@ that callers have the flexibility to pass whatever they want.
898898
~~~~
899899
## xfail-test
900900
fn call_twice(f: fn()) { f(); f(); }
901-
call_twice({|| "I am a stack closure; });
901+
call_twice({|| "I am a stack closure"; });
902902
call_twice(fn@() { "I am a boxed closure"; });
903903
fn bare_function() { "I am a plain function"; }
904904
call_twice(bare_function);

0 commit comments

Comments
 (0)