small error in image doc (make-color) fixed

svn: r7502
This commit is contained in:
Matthias Felleisen 2007-10-15 19:01:13 +00:00
parent 11af45e306
commit d78bfca30d

View File

@ -15,9 +15,9 @@
Data definition: Data definition:
<pre> <pre>
<code> <code>
(define-struct color (red blue green)) (define-struct color (red green blue))
;; A CS is a structure: (make-color N N N) ;; A CS is a structure: (make-color N N N)
;; where N is between 0 and 255. ;; where N is between 0 and 255 (inclusive).
;; <em>{(idx Color)}</em> is one of: ;; <em>{(idx Color)}</em> is one of:
;; -- a color symbol, e.g., 'blue ;; -- a color symbol, e.g., 'blue