Skip to content

Commit

Permalink
Fix typo and import
Browse files Browse the repository at this point in the history
  • Loading branch information
Baris Sencan committed Feb 26, 2015
1 parent bfb61d8 commit 5fd25f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ManualLayout/Operators.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
// Copyright (c) 2015 Baris Sencan. All rights reserved.
//

import Foundation
import UIKit

infix operator =~ { associativity right precedence 150 }
infix operator =~ { associativity right precedence 150 }

public func =~ (inout point: CGPoint, pointTuple: (CGFloat, CGFloat)) -> CGPoint {
point = CGPoint(x: pointTuple.0, y: pointTuple.1)
Expand Down

0 comments on commit 5fd25f1

Please sign in to comment.