Commits

Doug Gregor committed c2aee8429d4
Omit needless words: drop "with" and "using" leading subsequent parameters. Beyond the first parameter, the "with" or "using" at the beginning of an argument label is needless, because one does not read the base name of the method as if it distributed to the parameters. Some examples: - func setProperty(_: String, withValue: AnyObject? = nil) + func setProperty(_: String, value: AnyObject? = nil) - func hitTest(_: NSRect, withImageDestinationRect: NSRect, context: NSGraphicsContext? = nil, hints: [String : AnyObject]? = nil, flipped: Bool) -> Bool + func hitTest(_: NSRect, imageDestinationRect: NSRect, context: NSGraphicsContext? = nil, hints: [String : AnyObject]? = nil, flipped: Bool) -> Bool - func track(_: NSRulerMarker, withMouseEvent: NSEvent) -> Bool + func track(_: NSRulerMarker, mouseEvent: NSEvent) -> Bool Swift SVN r32141