summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorEli Barzilay <eli@barzilay.org>2013-07-16 01:29:37 -0400
committerEli Barzilay <eli@barzilay.org>2013-07-16 01:29:37 -0400
commite8f8e2331bf57da87949cd130d6c21dfcb4862ca (patch)
treeaa31003df1ce031d21c32462e59f9eae6a73d89a
parent6b282360b029ecc906d587dca8573568785b5cf8 (diff)
More comment fixes.
-rw-r--r--racket.html.markdown8
1 files changed, 4 insertions, 4 deletions
diff --git a/racket.html.markdown b/racket.html.markdown
index 3a1cdd29..e528bc74 100644
--- a/racket.html.markdown
+++ b/racket.html.markdown
@@ -22,7 +22,7 @@ Feedback is appreciated! You can reach me at [@th3rac25](http://twitter.com/th3r
#| Block comments
can span multiple lines and...
#|
- they can be nested !
+ they can be nested!
|#
|#
@@ -370,7 +370,7 @@ vec ; => #(1 2 3 4)
(show " | ~a | " n #\space)
(show "---~a---" n #\-))
- (define (show fmt n ch) ;; internal function
+ (define (show fmt n ch) ; internal function
(printf fmt (make-string n ch))
(newline)))
@@ -388,9 +388,9 @@ vec ; => #(1 2 3 4)
(class object%
(init size) ; initialization argument
(super-new) ; superclass initialization
- ; Field
+ ;; Field
(define current-size size)
- ; Public methods
+ ;; Public methods
(define/public (get-size) current-size)
(define/public (grow amt) (set! current-size (+ amt current-size)))
(define/public (eat other-fish) (grow (send other-fish get-size)))))