From 11db05cf1ac4182e7e5199d07c1edc740eb4af14 Mon Sep 17 00:00:00 2001 From: Tim Chevalier Date: Mon, 23 May 2011 10:41:47 -0700 Subject: [PATCH] Apparently my version of texinfo doesn't require curly braces to be escaped, but the buildbot's version does... --- doc/rust.texi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/rust.texi b/doc/rust.texi index 66e3913fa94..956bab464c6 100644 --- a/doc/rust.texi +++ b/doc/rust.texi @@ -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