From 7e2a73e48a7938495a1bb744176923e030bd2028 Mon Sep 17 00:00:00 2001 From: chongxx Date: Fri, 25 Nov 2016 23:02:49 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=8C=E9=9F=B3=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- getting_started/Chapter7.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting_started/Chapter7.md b/getting_started/Chapter7.md index 49f9b10..0911c04 100644 --- a/getting_started/Chapter7.md +++ b/getting_started/Chapter7.md @@ -58,7 +58,7 @@ iex> if false, do: :this, else: :that :that ``` -`do:`和`else:`启示就是关键字列表!实际上,这个和上面的调用是等价的: +`do:`和`else:`其实就是关键字列表!实际上,这个和上面的调用是等价的: ``` iex> if(false, [do: :this, else: :that])