From 15e0bbcff8972f636f543c545eb54763b50f2737 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Fri, 8 Aug 2008 23:09:41 +0000 Subject: [PATCH] doc fix (pr9670) svn: r11158 --- collects/mysterx/scribblings/browsers.scrbl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/collects/mysterx/scribblings/browsers.scrbl b/collects/mysterx/scribblings/browsers.scrbl index 34905ba62d..59f09ad6b7 100644 --- a/collects/mysterx/scribblings/browsers.scrbl +++ b/collects/mysterx/scribblings/browsers.scrbl @@ -10,14 +10,15 @@ [height (or/c exact-nonnegative-integer? (one-of/c 'default)) 'default] [x (or/c exact-integer? (one-of/c 'default)) 'default] [y (or/c exact-integer? (one-of/c 'default)) 'default] - [style (listof (any-of/c 'iconize 'maximize 'no-system-menu - 'no-thick-border 'scrollbars))])]{ + [style-options + (listof (any-of/c 'iconize 'maximize 'no-system-menu + 'no-thick-border 'scrollbars))])]{ Creates an instance of a MysterX browser. The @scheme[label] argument is a string for the document caption, with default . The @scheme[width], @scheme[height], @scheme[x], and @scheme[y] give the size and placement of the browser window on the desktop, with - defaults provided by Windows. When @scheme[style-list] includes + defaults provided by Windows. When @scheme[style-options] includes @scheme['scrollbars], the vertical scrollbar is disabled if scrolling is unnecessary, and the horizontal scrollbar disappears if scrolling is unnecessary.