-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Typos: test/*
(misc folders in test)
#75033
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
if 'asserts' not in config.available_features: | ||
config.unsupported = True | ||
|
||
config.subsitutions = list(config.substitutions) | ||
config.substitutions = list(config.substitutions) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This might cause a change in behavior. Are we certain it's correct? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looks very much like a typo in a line that did not prove necessary. @compnerd Do we need this line removed or corrected? |
||
|
||
def get_target_os(): | ||
import re | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -93,10 +93,10 @@ struct UnavailableType { | |
var storedClosure: Int = { .random() ? 0 : 1 }() | ||
|
||
@Wrapper | ||
var wrappered = .random() ? 0 : 1 | ||
var wrapped = .random() ? 0 : 1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm probably being too paranoid, but the identifier |
||
|
||
@Wrapper(wrappedValue: .random() ? 0 : 1) | ||
var alsoWrappered: Int | ||
var alsoWrapped: Int | ||
} | ||
|
||
@available(*, unavailable) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please leave the spelling here alone, as you can't rename the record it refers to.