Skip to content

Commit

Permalink
Add Mark to some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dmauro committed Jul 27, 2014
1 parent d3632b5 commit 6a2ce3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions WeakArray/WeakArray.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ private class Weak<T: AnyObject> {
}

public struct WeakArray<T: AnyObject>: Sequence, Printable, DebugPrintable {
// Private
// MARK: Private
private typealias WeakObject = Weak<T>
private typealias GeneratorType = WeakGenerator<T>
private var items = [WeakObject]()

// Public Vars
// MARK: Public
public var description: String {
return items.description
}
Expand All @@ -59,7 +59,7 @@ public struct WeakArray<T: AnyObject>: Sequence, Printable, DebugPrintable {
return items.isEmpty
}

// Methods
// MARK: Methods
public init(array: [T] = []) {
self += array
}
Expand Down

0 comments on commit 6a2ce3c

Please sign in to comment.