From ea1636d4f1a7017da6ea1e25dc0c527174e2fdaa Mon Sep 17 00:00:00 2001 From: Asumu Takikawa Date: Mon, 23 Jul 2012 13:10:05 -0400 Subject: [PATCH] Doc fixes reported by Gary Baumgartner The typo on 'redex.racket-lang.org' still remains. Relevant to PR 12680 Merge to v5.3 --- collects/scribblings/drracket/keybindings.scrbl | 2 +- collects/scribblings/reference/class.scrbl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/collects/scribblings/drracket/keybindings.scrbl b/collects/scribblings/drracket/keybindings.scrbl index 5e483e97c0..f6f1629d1d 100644 --- a/collects/scribblings/drracket/keybindings.scrbl +++ b/collects/scribblings/drracket/keybindings.scrbl @@ -254,7 +254,7 @@ s-exp framework/keybinding-lang (λ (ed evt) (when (is-a? ed text:basic<%>) (define fr (send ed get-top-level-window)) - ;; note: fr could be #f + @code:comment{note: fr could be #f} (when fr (send fr command)))))) (frame-key "t" execute-callback) diff --git a/collects/scribblings/reference/class.scrbl b/collects/scribblings/reference/class.scrbl index 5e42bc2e2c..9babc39139 100644 --- a/collects/scribblings/reference/class.scrbl +++ b/collects/scribblings/reference/class.scrbl @@ -1260,7 +1260,7 @@ initialization variables can be mutated with @racket[set!]. @subsection[#:tag "methodcalls"]{Methods} -Method names within a class can only be used in the procedure position +Method names used within a class can only be used in the procedure position of an application expression; any other use is a syntax error. To allow methods to be applied to lists of arguments, a method @@ -1313,7 +1313,7 @@ Calls the method on @racket[obj] whose name matches @racket[kw-arg]s.} -@defform/subs[(send* obj-expr msg ...) +@defform/subs[(send* obj-expr msg ...+) ([msg (method-id arg ...) (method-id arg ... . arg-list-expr)])]{