Skip to content

Commit

Permalink
Merge pull request #4 from thejohnlima/hotfix/access_modifiers
Browse files Browse the repository at this point in the history
Fix access modifiers for moon info properties
  • Loading branch information
thejohnlima authored Feb 2, 2020
2 parents 153d58c + 3a6a180 commit 0c869f0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Sources/MoonKit/Moon.swift
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ public class Moon {

// MARK: - Structs
public struct Info {
var age: Double?
var distance: Double?
var phase: Moon.Phase?
var latitude: Double?
var longitude: Double?
public var age: Double?
public var distance: Double?
public var phase: Moon.Phase?
public var latitude: Double?
public var longitude: Double?

init() {}
public init() {}
}

// MARK: - Initializers
Expand Down

0 comments on commit 0c869f0

Please sign in to comment.