Apparently my version of texinfo doesn't require curly braces to be escaped, but the buildbot's version does...

This commit is contained in:
Tim Chevalier 2011-05-23 10:41:47 -07:00
parent ac3fd914b9
commit 11db05cf1a
1 changed files with 4 additions and 4 deletions

View File

@ -1836,12 +1836,12 @@ were declared without the @code{!} annotation, the following code would not
typecheck:
@example
fn f(int i) -> int @{
if (i == 42) {
if (i == 42) @{
ret 42;
}
else {
@}
else @{
my_err("Bad number!");
}
@}
@}
@end example