summaryrefslogtreecommitdiffhomepage
path: root/zh-cn/haskell-cn.html.markdown
diff options
context:
space:
mode:
authorTaff <gaotongfei1995@gmail.com>2015-09-29 01:31:50 +0800
committerTaff <gaotongfei1995@gmail.com>2015-09-29 01:31:50 +0800
commit5282918d9959ba5f02f952bff500f205db9f6dd5 (patch)
tree5397453ac6030806461c0db04a802b9be19d64b3 /zh-cn/haskell-cn.html.markdown
parente898c628ef68aaeea82be92ac5b6c5922bbb9f5e (diff)
fix error
Diffstat (limited to 'zh-cn/haskell-cn.html.markdown')
-rw-r--r--zh-cn/haskell-cn.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/zh-cn/haskell-cn.html.markdown b/zh-cn/haskell-cn.html.markdown
index 8904970f..b0b1183f 100644
--- a/zh-cn/haskell-cn.html.markdown
+++ b/zh-cn/haskell-cn.html.markdown
@@ -200,13 +200,13 @@ foo 5 -- 75
-- 你可以使用 `$` 来移除多余的括号。
-- 修改前
-(even (fib 7)) -- true
+(even (fib 7)) -- False
-- 修改后
-even . fib $ 7 -- true
+even . fib $ 7 -- False
-- 等价地
-even $ fib 7 -- true
+even $ fib 7 -- False
----------------------------------------------------
-- 5. 类型声明