From 54de2e941381ec203371b281b461f0194bdef085 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Fri, 30 Dec 2011 17:11:36 -0700 Subject: [PATCH] fix typo Reported by J. Ian Johnson original commit: fb46daafa09c39a5029efd872933f8db20822c41 --- collects/scribblings/scribble/core.scrbl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/collects/scribblings/scribble/core.scrbl b/collects/scribblings/scribble/core.scrbl index aea030b1..8fa4d341 100644 --- a/collects/scribblings/scribble/core.scrbl +++ b/collects/scribblings/scribble/core.scrbl @@ -862,12 +862,12 @@ See also @racket[index].} @defstruct[multiarg-element ([style element-style?] - [content (listof content?)])]{ + [contents (listof content?)])]{ Like @racket[element] with a list for content, except that for Latex output, if the @tech{style name} in @racket[style] is a string, then it corresponds to a Latex command that accepts as many arguments (each -in curly braces) as elements of @racket[content].} +in curly braces) as elements of @racket[contents].} @defstruct[traverse-element ([traverse element-traverse-procedure/c])]{