Skip to content

Commit 76590d8

Browse files
committed
Fix typo
afer -> after parellelism -> parallelism
1 parent 273ad25 commit 76590d8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: docs/DebuggingTheCompiler.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Here is how to dump the IR after the main phases of the swift compiler
4343

4444
swiftc -emit-ir -Xfrontend -disable-llvm-optzns -O file.swift
4545

46-
4. **LLVM passes**. To print the LLVM IR afer LLVM passes::
46+
4. **LLVM passes**. To print the LLVM IR after LLVM passes::
4747

4848
swiftc -emit-ir -O file.swift
4949

Diff for: docs/DriverInternals.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Analysis` for more information.
114114
The Compilation's TaskQueue controls the low-level aspects of managing
115115
subprocesses. Multiple Jobs may execute simultaneously, but communication with
116116
the parent process (the driver) is handled on a single thread. The level of
117-
parellelism may be controlled by a compiler flag.
117+
parallelism may be controlled by a compiler flag.
118118

119119
If a Job does not finish successfully, the Compilation needs to record which
120120
jobs have failed, so that they get rebuilt next time the user tries to build

0 commit comments

Comments
 (0)