Merge pull request #46 from sebreh/master

Fix for typo in OS check enabling iOS specific layout attributes
This commit is contained in:
Robert Payne 2015-02-05 20:26:15 +13:00
commit 6e3c3a7a1b
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ internal struct ConstraintAttributes: RawOptionSetType, BooleanType {
if (self & ConstraintAttributes.Baseline) {
attrs.append(.Baseline)
}
#if os(ios)
#if os(iOS)
if (self & ConstraintAttributes.FirstBaseline) {
attrs.append(.FirstBaseline)
}