File tree Expand file tree Collapse file tree
SwiftyJSONAccelerator/Base Files Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import Foundation{INCLUDE_SWIFTY}{INCLUDE_OBJECT_MAPPER}
99
1010public {OBJECT_KIND} {OBJECT_NAME}: {OBJECT_BASE_CLASS}{NSCODING_PROTOCOL_SUPPORT} {
1111
12- // MARK: Declaration for string constants to be used to decode and also serialise .
12+ // MARK: Declaration for string constants to be used to decode and also serialize .
1313{STRING_CONSTANT_BLOCK}
1414
1515 // MARK: Properties
Original file line number Diff line number Diff line change 1- // MARK: ObjectMapper Initialisers
1+ // MARK: ObjectMapper Initalizers
22 /**
33 Map a JSON object to this class using ObjectMapper
44 - parameter map: A mapping from ObjectMapper
Original file line number Diff line number Diff line change 1- // MARK: SwiftyJSON Initialisers
1+ // MARK: SwiftyJSON Initalizers
22 /**
3- Initiates the class based on the object
3+ Initates the class based on the object
44 - parameter object: The object of either Dictionary or Array kind that was passed.
5- - returns: An initialised instance of the class.
5+ - returns: An initalized instance of the class.
66 */
77 convenience public init(object: AnyObject) {
88 self.init(json: JSON(object))
99 }
1010
1111 /**
12- Initiates the class based on the JSON that was passed.
12+ Initates the class based on the JSON that was passed.
1313 - parameter json: JSON object from SwiftyJSON.
14- - returns: An initialised instance of the class.
14+ - returns: An initalized instance of the class.
1515 */
1616 public init(json: JSON) {
1717{INITALIZER}
You can’t perform that action at this time.
0 commit comments