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