diff --git a/README.md b/README.md index 8bb1a51..a8f59b7 100644 --- a/README.md +++ b/README.md @@ -14,10 +14,10 @@ Your custom object (subclass of `NSObject`) needs to override the method `+mts_m ```objective-c + (NSDictionary*)mts_mapping { - return @{@"json__key_1" : @"class_property_name_1", - @"json_key_2" : @"class_property_name_2", - @"json_key_3.json_key_4" : @"class_property_name_3", - ... + return @{@"json_key_1" : @"propertyName1", + @"json_key_2" : @"propertyName2", + @"json_key_3.json_key_4" : @"propertyName3", + ... }; } ```