Skip to content
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