manual: fix one more nit.

This commit is contained in:
Graydon Hoare 2012-10-11 19:39:21 -07:00
parent 588d97d80e
commit 5bca5f7c54

View file

@ -1030,7 +1030,7 @@ A special kind of function can be declared with a `!` character where the
output slot type would normally be. For example:
~~~~
fn my_err(s: ~str) -> ! {
fn my_err(s: &str) -> ! {
log(info, s);
fail;
}