From e74c53f80ab23eb065fc87880bafb8b7ffa0783c Mon Sep 17 00:00:00 2001 From: Vincent Date: Sun, 13 Jul 2014 16:53:43 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AC=94=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit > 12880 -> 1280 --- source/chapter2/09_Classes_and_Structures.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/chapter2/09_Classes_and_Structures.md b/source/chapter2/09_Classes_and_Structures.md index c4e8ba41..92367954 100755 --- a/source/chapter2/09_Classes_and_Structures.md +++ b/source/chapter2/09_Classes_and_Structures.md @@ -113,7 +113,7 @@ println("The width of someVideoMode is \(someVideoMode.resolution.width)") 你也可以使用点语法为属性变量赋值: ```swift -someVideoMode.resolution.width = 12880 +someVideoMode.resolution.width = 1280 println("The width of someVideoMode is now \(someVideoMode.resolution.width)") // 输出 "The width of someVideoMode is now 1280" ```