Skip to content

Commit

Permalink
Fix typo and grammar in docs/DebuggingTheCompiler.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
jandrewstre committed Dec 4, 2015
1 parent 4955dac commit dc451c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/DebuggingTheCompiler.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Here is how to dump the IR after the main phases of the swift compiler
get what you want to see.

#. **Performance SIL passes**. To print the SIL after the complete SIL
oprimization pipeline::
optimization pipeline::

swiftc -emit-sil -O file-swift

Expand Down Expand Up @@ -63,7 +63,7 @@ Debugging on SIL Level
Options for Dumping the SIL
```````````````````````````

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

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

Debugging Swift Executables
---------------------------
Expand Down

0 comments on commit dc451c4

Please sign in to comment.