Skip to content

Commit

Permalink
[FIX] Missing space in transformable relationships - rentzsch#97.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kris Markel committed Mar 27, 2012
1 parent 3aea302 commit 025ccfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/machine.h.motemplate
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ extern const struct <$managedObjectClassName$>FetchedProperties {<$foreach Fetch
<$foreach Attribute noninheritedAttributes do$>
<$if Attribute.hasDefinedAttributeType$>
<$if TemplateVar.arc$>
@property (nonatomic, strong) <$Attribute.objectAttributeType$><$Attribute.name$>;
@property (nonatomic, strong) <$Attribute.objectAttributeType$> <$Attribute.name$>;
<$else$>
@property (nonatomic, retain) <$Attribute.objectAttributeType$><$Attribute.name$>;
@property (nonatomic, retain) <$Attribute.objectAttributeType$> <$Attribute.name$>;
<$endif$>
<$if Attribute.hasScalarAttributeType$>
@property <$Attribute.scalarAttributeType$> <$Attribute.name$>Value;
Expand Down

0 comments on commit 025ccfb

Please sign in to comment.