From d4b176dd411d5707045baadac31dfb28544c87bb Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Sun, 19 Feb 2012 15:16:47 -0600 Subject: [PATCH] clarify nor docs --- collects/scribblings/reference/booleans.scrbl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/collects/scribblings/reference/booleans.scrbl b/collects/scribblings/reference/booleans.scrbl index 7d8c78c647..42710745eb 100644 --- a/collects/scribblings/reference/booleans.scrbl +++ b/collects/scribblings/reference/booleans.scrbl @@ -257,6 +257,9 @@ Returns @racket[(not v)].} @defform[(nor expr ...)]{ Same as @racket[(not (or expr ...))]. + In the two argument case, returns @racket[#t] if neither of the + arguments is a true value. + @examples[#:eval bool-eval (nor #f #t)