manual: example fixup.

This commit is contained in:
Graydon Hoare 2012-10-11 17:52:12 -07:00
parent 196cc0265c
commit 45dc69d887

View File

@ -2107,7 +2107,7 @@ Both cause an early return from the caller's frame:
{
let mut _early_ret = false;
f(|j| { g(j); _early_ret = true; });
if early_ret { return; }
if _early_ret { return; }
}
do f |j| {