diff options
author | izerobyte <chen.gx@outlook.com> | 2020-09-09 09:44:16 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-09 09:44:16 +0800 |
commit | 292e041289c7d74207cb688b424c4f8b9413bf44 (patch) | |
tree | c7038c2defe4ddcfb9fd5bbd9a98a4fe97111a3a /zh-cn/haskell-cn.html.markdown | |
parent | 11520e91a1446569520d0b2aeb29c6ae03e0c088 (diff) |
Update haskell-cn.html.markdown
misspellings
Diffstat (limited to 'zh-cn/haskell-cn.html.markdown')
-rw-r--r-- | zh-cn/haskell-cn.html.markdown | 2 |
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 -- 调用函数 |