Merge pull request #275 from VincentSit/gh-pages

修正笔误
This commit is contained in:
ChildhoodAndy
2014-07-17 10:08:01 +08:00
2 changed files with 2 additions and 2 deletions

View File

@ -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"
```