Skip to content

Commit

Permalink
Add missing comma and substitute three periods for ellipsis.
Browse files Browse the repository at this point in the history
  • Loading branch information
Erich Grunewald committed Feb 9, 2017
1 parent 2fc91aa commit bb07c1a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -400,31 +400,31 @@ class FooViewController : UIViewController, FoobarDelegate {

override func viewDidLoad() {
super.viewDidLoad()
//
// ...
}

// MARK: Layout

private func makeViewConstraints() {
//
// ...
}

// MARK: User Interaction

func foobarButtonTapped() {
//
// ...
}

// MARK: FoobarDelegate

func foobar(foobar: Foobar didSomethingWithFoo foo: Foo) {
//
func foobar(foobar: Foobar, didSomethingWithFoo foo: Foo) {
// ...
}

// MARK: Additional Helpers

private func displayNameForFoo(foo: Foo) {
//
// ...
}

}
Expand Down

0 comments on commit bb07c1a

Please sign in to comment.