Skip to content

Commit 149d474

Browse files
committed
Merge pull request #130 from jandrewstre/patch-3
Fix typo and grammar in docs/DebuggingTheCompiler.rst
2 parents 02c487d + dc451c4 commit 149d474

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: docs/DebuggingTheCompiler.rst

+3-3
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
---------------------------

0 commit comments

Comments
 (0)