Skip to content

Commit 67c7758

Browse files
Merge pull request #1658 from practicalswift/typo-fixes-20160312
[gardening] Fix recently introduced typos: "peoperty" → "property" and "specifiedso" → "specified so"
2 parents 5974b58 + a773051 commit 67c7758

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/Parse/ParseDecl.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2170,7 +2170,8 @@ ParserStatus Parser::parseDecl(SmallVectorImpl<Decl*> &Entries,
21702170
Status = makeParserCodeCompletionStatus();
21712171
if (CodeCompletion) {
21722172
// If we need to complete an override, collect the keywords already
2173-
// specifiedso that we do not duplicate them in code completion strings.
2173+
// specified so that we do not duplicate them in code completion
2174+
// strings.
21742175
SmallVector<StringRef, 3> Keywords;
21752176
switch (OrigTok.getKind()) {
21762177
case tok::kw_func:

stdlib/public/core/Collection.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -749,7 +749,7 @@ extension Collection {
749749
fatalError("unavailable function can't be called")
750750
}
751751

752-
@available(*, unavailable, message: "Removed in Swift 3. Please use underestimatedCount peoperty.")
752+
@available(*, unavailable, message: "Removed in Swift 3. Please use underestimatedCount property.")
753753
public func underestimateCount() -> Int {
754754
fatalError("unavailable function can't be called")
755755
}

0 commit comments

Comments
 (0)