I'm relatively new to Swift and am receiving a Multiple Closures with Trailing Closure Violation:...
warning from SwiftLint. My code that causes this looks like:
self.start(loggedIn: { _, error in
//...
// below line causes warning
}) { [weak self] (someInfo: SomeInfo?, error: ErrorType) in
//...
}