diff options
author | Duong H. Nguyen <cmpitg@gmail.com> | 2014-01-05 21:37:35 +0700 |
---|---|---|
committer | Duong H. Nguyen <cmpitg@gmail.com> | 2014-01-05 21:37:35 +0700 |
commit | 6801c7056d0e2d2eac269ff81a969c29775f6e4a (patch) | |
tree | 12f8c090bbdb025fd031e15dc4efab0fc745c2d8 | |
parent | 17f4ff8588acfa4a0306f01b56de7abe4d9d9c89 (diff) |
Improve language usage in Racket guide
-rw-r--r-- | racket.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/racket.html.markdown b/racket.html.markdown index 856fa75c..eddc00bf 100644 --- a/racket.html.markdown +++ b/racket.html.markdown @@ -606,8 +606,8 @@ vec ; => #(1 2 3 4) ;; 11. Input & output ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; Racket has this concept of "port", which is very similar to file descriptor -;; in other languages +;; Racket has this concept of "port", which is very similar to file +;; descriptors in other languages ;; Open "/tmp/tmp.txt" and write "Hello World" ;; This would trigger an error if the file's already existed |