1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-07 15:26:45 +02:00

[racket/zh-cn] fix typo

This commit is contained in:
yihong wu
2019-12-23 21:38:19 +08:00
committed by GitHub
parent 1d5f3671ea
commit 8ff31e56ad

View File

@@ -444,7 +444,7 @@ n ; => 6
(set-box! n* (add1 (unbox n*))) (set-box! n* (add1 (unbox n*)))
(unbox n*) ; => 6 (unbox n*) ; => 6
;; 很多 Racket 诗句类型是不可变的 (对,列表,等),有一些既是可变的 ;; 很多 Racket 数据类型是不可变的 (对,列表,等),有一些既是可变的
;; 又是不可变的 (字符串,向量,散列表 ;; 又是不可变的 (字符串,向量,散列表
;; 等...) ;; 等...)