Skip to content

Commit feae5f9

Browse files
authored
Merge pull request #5835 from practicalswift/gardening-20161117
2 parents bc75656 + 6fa577d commit feae5f9

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

docs/Windows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
To be filled in.
55

66
## Windows Subsystem for Linux (WSL)
7-
- Note that all compiled Swift binaries are only executable within Bash on Windows and are Ubunutu, not Windows, executables.
7+
- Note that all compiled Swift binaries are only executable within Bash on Windows and are Ubuntu, not Windows, executables.
88
- Make sure to run all commands from Bash, or the project won't compile.
99

1010
### 1. Install WSL

include/swift/Syntax/RawSyntax.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- Trivia.h - Swift Raw Syntax Nodes ----------------------*- C++ -*-===//
1+
//===--- RawSyntax.h - Swift Raw Syntax Nodes -------------------*- C++ -*-===//
22
//
33
// This source file is part of the Swift.org open source project
44
//

include/swift/Syntax/Token.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ class Token {
396396
/// Dump the structure of the raw syntax tree for debugging.
397397
void dump(llvm::raw_ostream &OS, unsigned Indent = 0) const;
398398

399-
/// Print the raw syntax tree with full formatting fideltiy.
399+
/// Print the raw syntax tree with full formatting fidelity.
400400
void print(llvm::raw_ostream &OS) const;
401401
};
402402

lib/Parse/Trivia.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- Lexer.h - Swift Source Trivia --------------------------*- C++ -*-===//
1+
//===--- Trivia.cpp - Swift Source Trivia ---------------------------------===//
22
//
33
// This source file is part of the Swift.org open source project
44
//

lib/Sema/ConstraintSystem.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2031,7 +2031,7 @@ class ConstraintSystem {
20312031
ConstraintLocatorBuilder locator,
20322032
bool isFavored);
20332033

2034-
/// \brief Collect the current inactive disjunciton constraints.
2034+
/// \brief Collect the current inactive disjunction constraints.
20352035
void collectDisjunctions(SmallVectorImpl<Constraint *> &disjunctions);
20362036

20372037
/// \brief Solve the system of constraints after it has already been

lib/Syntax/Token.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- Token.cpp - Token interface ----------------------------*- C++ -*-===//
1+
//===--- Token.cpp - Token interface --------------------------------------===//
22
//
33
// This source file is part of the Swift.org open source project
44
//
@@ -88,7 +88,7 @@ void Token::dump(llvm::raw_ostream &OS, unsigned Indent) const {
8888
OS << ')';
8989
}
9090

91-
/// Print the raw syntax tree with full formatting fideltiy.
91+
/// Print the raw syntax tree with full formatting fidelity.
9292
void Token::print(llvm::raw_ostream &OS) const {
9393
for (auto Leader : LeadingTrivia)
9494
Leader.print(OS);

0 commit comments

Comments
 (0)