Skip to content

Commit 5826207

Browse files
committed
Merge pull request #283 from TheGiantPanda/master
Fixed spelling and formatting
2 parents 814b3d2 + e42724d commit 5826207

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/proposals/Accessors.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ objects::
8787
point = point1
8888
point0.x = x
8989
point = point0
90-
90+
9191
Note that ``point.y`` is left unchanged.
9292

9393
Local analysis
@@ -157,7 +157,7 @@ through unexpected aliases::
157157
Note that, in either solution, you've introduced extra full-value
158158
loads. This may be quite expensive, and it's not guaranteed to be
159159
semantically equivalent.
160-
160+
161161
Performance
162162
~~~~~~~~~~~
163163

@@ -453,7 +453,7 @@ Nor can this be fixed with a purely local analysis; consider::
453453

454454
class C { var array: [Int] }
455455
let global_C = C()
456-
456+
457457
func assign(inout value: Int) {
458458
C.array = []
459459
value = 0
@@ -606,7 +606,7 @@ General solutions
606606
~~~~~~~~~~~~~~~~~
607607

608608
A language generally has six tools for dealing with code it considers
609-
undesireable. Some of this terminology is taken from existing
609+
undesirable. Some of this terminology is taken from existing
610610
standards, others not.
611611

612612
* The language may nonetheless take steps to ensure that the code
@@ -916,7 +916,7 @@ I'm almost ready to state the core rule about formal accesses, but
916916
first I need to build up a few more definitions.
917917

918918
An *abstract storage location* (ASL) is:
919-
919+
920920
* a global variable declaration;
921921

922922
* an ``inout`` parameter declaration, along with a reference
@@ -1106,7 +1106,7 @@ the other FA's DSN set and (2) not from a non-overlapping subobject.
11061106
Are these conditions true?
11071107

11081108
Recall that an addressor is invoked for an l-value of the form::
1109-
1109+
11101110
base.memory
11111111

11121112
or::

0 commit comments

Comments
 (0)