Skip to content

Add whitespaces. #170

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

Closed
wants to merge 2 commits into from
Closed
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
6 changes: 3 additions & 3 deletions stdlib/public/SDK/AppKit/AppKit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ struct _NSCursorMirror : _MirrorType {
_preconditionFailure("_MirrorType access out of bounds")
}

var summary: String { return ""}
var summary: String { return "" }

var quickLookObject: PlaygroundQuickLook? {
return .Some(.Image(_value.image))
Expand All @@ -50,7 +50,7 @@ struct _NSViewMirror : _MirrorType {

var _v : NSView

init(_ v : NSView) {_v = v}
init(_ v : NSView) { _v = v }

var value: Any { get { return _v } }

Expand All @@ -64,7 +64,7 @@ struct _NSViewMirror : _MirrorType {
_preconditionFailure("_MirrorType access out of bounds")
}

var summary: String { get { return ""} }
var summary: String { get { return "" } }

var quickLookObject: PlaygroundQuickLook? { get {
// adapted from the Xcode QuickLooks implementation
Expand Down