Skip to content

Commit

Permalink
Merge pull request #2 from josephlord/beta4
Browse files Browse the repository at this point in the history
Xcode 7 beta4 support
  • Loading branch information
dimsumthinking committed Jul 27, 2015
2 parents 644fe1b + 8cbe3c4 commit eda1b95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class TurtleView: UIView {
self.backgroundColor = backgroundColor
addSubview(avatarView)
}
required public init(coder aDecoder: NSCoder) {
required public init?(coder aDecoder: NSCoder) {
super.init(coder:aDecoder)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public func right() {

// MARK: - left -

public func left(degrees: Double = 90) {
public func left(degrees: Double) {
turtle.increaseHeadingBy(-degrees)
}

Expand Down

0 comments on commit eda1b95

Please sign in to comment.