Skip to content

Commit 2c28908

Browse files
author
Karthikeya Udupa KM
committed
Merge pull request #20 from insanoid/revert-19-issues/fix-spellings
Revert "#18 Fixed spellings of comments"
2 parents 0c188e4 + 9d70215 commit 2c28908

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

SwiftyJSONAccelerator/Base Files/BaseTemplate.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Foundation{INCLUDE_SWIFTY}{INCLUDE_OBJECT_MAPPER}
99

1010
public {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

SwiftyJSONAccelerator/Base Files/ObjectMapperTemplate.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

SwiftyJSONAccelerator/Base Files/SwiftyJSONTemplate.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
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}

0 commit comments

Comments
 (0)