Skip to content

Rename 'isAcceptedBy(_:)' to 'isAccepted(by:)'. #33

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

Merged
merged 1 commit into from
Nov 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Sources/SwiftDriver/Driver/DriverKind.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
/// Describes which mode the driver is in, which dictates

/// Describes which mode the driver is in.
public enum DriverKind {
case interactive
case batch
Expand Down
4 changes: 2 additions & 2 deletions Sources/SwiftDriver/Options/Option.swift
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ extension Option {
}

extension Option {
/// Whether this option is accepted by the
public func isAcceptedBy(_ driverKind: DriverKind) -> Bool {
/// Whether this option is accepted by a driver of the given kind.
public func isAccepted(by driverKind: DriverKind) -> Bool {
switch driverKind {
case .autolinkExtract:
return attributes.contains(.autolinkExtract)
Expand Down