Skip to content

Commit 30d5c6e

Browse files
committed
Merge pull request #1 from apple/master
update1
2 parents 177e775 + 149d474 commit 30d5c6e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/DebuggingTheCompiler.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Here is how to dump the IR after the main phases of the swift compiler
3535
get what you want to see.
3636

3737
#. **Performance SIL passes**. To print the SIL after the complete SIL
38-
oprimization pipeline::
38+
optimization pipeline::
3939

4040
swiftc -emit-sil -O file-swift
4141

@@ -63,7 +63,7 @@ Debugging on SIL Level
6363
Options for Dumping the SIL
6464
```````````````````````````
6565

66-
Often it is not sufficient to dump the SIL at the begin or end of the
66+
Often it is not sufficient to dump the SIL at the beginning or end of the
6767
optimization pipeline.
6868
The SILPassManager supports useful options to dump the SIL also between
6969
pass runs.
@@ -235,7 +235,7 @@ Then by running ``lldb test -s test.lldb``, lldb will:
235235
the function that the function pointer was passed to.
236236

237237
Using LLDB scripts can enable one to use complex debugger workflows without
238-
needing to retype the various commands perfectly everytime.
238+
needing to retype the various commands perfectly every time.
239239

240240
Debugging Swift Executables
241241
---------------------------

stdlib/public/core/Shims.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ internal func _makeSwiftNSFastEnumerationState()
2525
extra: (0, 0, 0, 0, 0))
2626
}
2727

28-
/// A dummy value that is be used as the target for `mutationsPtr` in fast
28+
/// A dummy value to be used as the target for `mutationsPtr` in fast
2929
/// enumeration implementations.
3030
var _fastEnumerationStorageMutationsTarget: CUnsignedLong = 0
3131

www/Philosophies.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Pervasive Philosophies Guiding the Swift Language Design
55
========================================================
66

7-
This are just notes, in no particular order.
7+
These are just notes, in no particular order.
88

99
Don't Repeat Yourself
1010
---------------------

0 commit comments

Comments
 (0)