From 529e7588aa836547b61cf87bcbfb948a25ce78f7 Mon Sep 17 00:00:00 2001 From: Robert Payne Date: Sun, 12 Apr 2015 23:44:32 +1200 Subject: [PATCH] Update fatal errors --- Source/ConstraintDescription.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/ConstraintDescription.swift b/Source/ConstraintDescription.swift index 8a51dc9..0ab8c4b 100644 --- a/Source/ConstraintDescription.swift +++ b/Source/ConstraintDescription.swift @@ -450,35 +450,35 @@ final internal class ConstraintDescription: ConstraintDescriptionExtendable, Con private var toItem: ConstraintItem { willSet { if self.concreteConstraint != nil { - fatalError("Attempting to modify a ConstraintDescription after it’s constraint has been created.") + fatalError("Attempting to modify a ConstraintDescription after its constraint has been created.") } } } private var relation: ConstraintRelation? { willSet { if self.concreteConstraint != nil { - fatalError("Attempting to modify a ConstraintDescription after it’s constraint has been created.") + fatalError("Attempting to modify a ConstraintDescription after its constraint has been created.") } } } private var constant: Any = Float(0.0) { willSet { if self.concreteConstraint != nil { - fatalError("Attempting to modify a ConstraintDescription after it’s constraint has been created.") + fatalError("Attempting to modify a ConstraintDescription after its constraint has been created.") } } } private var multiplier: Float = 1.0 { willSet { if self.concreteConstraint != nil { - fatalError("Attempting to modify a ConstraintDescription after it’s constraint has been created.") + fatalError("Attempting to modify a ConstraintDescription after its constraint has been created.") } } } private var priority: Float = 1000.0 { willSet { if self.concreteConstraint != nil { - fatalError("Attempting to modify a ConstraintDescription after it’s constraint has been created.") + fatalError("Attempting to modify a ConstraintDescription after its constraint has been created.") } } }