Skip to content

Commit

Permalink
add 'public' access control to init method.
Browse files Browse the repository at this point in the history
  • Loading branch information
都築 貴之 committed Mar 2, 2016
1 parent 2de5edf commit 97429e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Row.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class Row<T: UITableViewCell>: RowType {

public init() { }

init(@noescape closure: (Row<T> -> Void)) {
public init(@noescape closure: (Row<T> -> Void)) {
closure(self)
}

Expand Down

0 comments on commit 97429e1

Please sign in to comment.