summaryrefslogtreecommitdiffhomepage
path: root/zh-cn/haskell-cn.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'zh-cn/haskell-cn.html.markdown')
-rw-r--r--zh-cn/haskell-cn.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/zh-cn/haskell-cn.html.markdown b/zh-cn/haskell-cn.html.markdown
index c854169e..d653c58c 100644
--- a/zh-cn/haskell-cn.html.markdown
+++ b/zh-cn/haskell-cn.html.markdown
@@ -128,7 +128,7 @@ snd ("haskell", 1) -- 1
-- 一个接受两个变量的简单函数
add a b = a + b
--- 注意,如果你使用 ghci (Hakell 解释器),你需要使用 `let`,也就是
+-- 注意,如果你使用 ghci (Haskell 解释器),你需要使用 `let`,也就是
-- let add a b = a + b
-- 调用函数