Skip to content

Commit 35b0e95

Browse files
committed
Add public access modifier to init method.
1 parent 2fe1e53 commit 35b0e95

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Sources/JSEN.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public enum JSEN : Equatable {
1919
case null
2020

2121
/// Attempts to initialize a JSEN instance from an `Any?` value.
22-
init?(from anyValue: Any?) {
22+
public init?(from anyValue: Any?) {
2323
switch anyValue {
2424
case let int as Int: self = .int(int)
2525
case let double as Double: self = .double(double)

0 commit comments

Comments
 (0)