From 7bae4a065db840afa9b8a0371f71fa5807a06fdd Mon Sep 17 00:00:00 2001 From: yulingtianxia Date: Mon, 16 Jun 2014 20:27:09 +0800 Subject: [PATCH] update advanced operators MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 删除两句英文 --- source/chapter2/23_Advanced_Operators.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/chapter2/23_Advanced_Operators.md b/source/chapter2/23_Advanced_Operators.md index 1f07032a0..49f49f4a3 100755 --- a/source/chapter2/23_Advanced_Operators.md +++ b/source/chapter2/23_Advanced_Operators.md @@ -285,7 +285,6 @@ let y = x &/ 0 2 + ((3 * 4) % 5) ``` -(3 * 4) is 12, so this is equivalent to: 3 * 4 = 12,所以这相当于: @@ -293,7 +292,6 @@ let y = x &/ 0 2 + (12 % 5) ``` -(12 % 5) is 2, so this is equivalent to: 12 % 5 = 2,所这又相当于 ```swift