From 4937fd27957ffaa90589e75e8e7b889ddcc51d9f Mon Sep 17 00:00:00 2001 From: Shiny Zhu Date: Sat, 7 Jun 2014 07:35:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BB=A3=E7=A0=81=E6=AE=B5?= =?UTF-8?q?=E5=86=85=E5=AE=B9=EF=BC=8C=E5=8E=BB=E6=8E=89=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E6=9C=80=E5=90=8E=E7=9A=84=E5=8F=8C=E5=BC=95=E5=8F=B7=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/chapter2/10_Properties.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/chapter2/10_Properties.md b/source/chapter2/10_Properties.md index 6984249b..19844f79 100644 --- a/source/chapter2/10_Properties.md +++ b/source/chapter2/10_Properties.md @@ -22,7 +22,7 @@ struct FixedLengthRange { var rangeOfThreeItems = FixedLengthRange(firstValue: 0, length: 3) // the range represents integer values 0, 1, and 2 rangeOfThreeItems.firstValue = 6 -// the range now represents integer values 6, 7, and 8” +// the range now represents integer values 6, 7, and 8 ``` @@ -36,7 +36,7 @@ rangeOfThreeItems.firstValue = 6 let rangeOfFourItems = FixedLengthRange(firstValue: 0, length: 4) // this range represents integer values 0, 1, 2, and 3 rangeOfFourItems.firstValue = 6 -// this will report an error, even thought firstValue is a variable property” +// this will report an error, even thought firstValue is a variable property ```