Skip to content

Commit 2ef10ee

Browse files
decklordblakewatters
authored andcommitted
*iovalue = [(NSString*)iovalue uppercaseString];
-> *ioValue = [(NSString*)ioValue uppercaseString];
1 parent 95b38b1 commit 2ef10ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Docs/Object Mapping.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ Let's take a look at how you can leverage key-value validation to perform the ab
737737
@implementation Article
738738
- (BOOL)validateTitle:(id *)ioValue error:(NSError **)outError {
739739
// Force the title to uppercase
740-
*iovalue = [(NSString*)iovalue uppercaseString];
740+
*ioValue = [(NSString*)ioValue uppercaseString];
741741
return YES;
742742
}
743743

0 commit comments

Comments
 (0)