diff options
author | Joey Huang <kamidox@qq.com> | 2015-03-03 01:04:19 +0800 |
---|---|---|
committer | Joey Huang <kamidox@qq.com> | 2015-03-03 01:04:19 +0800 |
commit | d05baf5bd02cf6c7270e35ee79964764848d8f1b (patch) | |
tree | b5d7dd115edb6249d4c5472fd07e9722bc5bbb49 /zh-cn | |
parent | cf65d3c08475f436dbebcfbfe9ddcace55f467dd (diff) |
correct typo
Diffstat (limited to 'zh-cn')
-rw-r--r-- | zh-cn/swift-cn.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zh-cn/swift-cn.html.markdown b/zh-cn/swift-cn.html.markdown index d5883464..d55f1aef 100644 --- a/zh-cn/swift-cn.html.markdown +++ b/zh-cn/swift-cn.html.markdown @@ -574,7 +574,7 @@ println(foundAtIndex == 2) // true // 甚至是 Unicode 的数学运算符等 prefix operator !!! {} -// 定义一个前缀运算符,使矩形的边长放大三位 +// 定义一个前缀运算符,使矩形的边长放大倍 prefix func !!! (inout shape: Square) -> Square { shape.sideLength *= 3 return shape |