From 0633c7ae6e54edebde8421cef14267ad1ba1e30c Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Sat, 17 Jul 2010 06:50:18 +0800 Subject: [PATCH] Fix syntax of tag variants in the list example --- doc/rust.texi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/rust.texi b/doc/rust.texi index 1f780d6f800..3ad445d2213 100644 --- a/doc/rust.texi +++ b/doc/rust.texi @@ -2193,9 +2193,9 @@ a = cat; An example of a @emph{recursive} @code{tag} type and its use: @example -type list[T] = tag(nil, +type list[T] = tag(nil(), cons(T, @@list[T])); -let list[int] a = cons(7, cons(13, nil)); +let list[int] a = cons(7, cons(13, nil())); @end example @@ -3315,9 +3315,9 @@ control enters the block. An example of a pattern @code{alt} statement: @example -type list[X] = tag(nil, cons(X, @@list[X])); +type list[X] = tag(nil(), cons(X, @@list[X])); -let list[int] x = cons(10, cons(11, nil)); +let list[int] x = cons(10, cons(11, nil())); alt (x) @{ case (cons(a, cons(b, _))) @{