aboutsummaryrefslogtreecommitdiff
path: root/Sources/track.swift
diff options
context:
space:
mode:
Diffstat (limited to 'Sources/track.swift')
-rw-r--r--Sources/track.swift6
1 files changed, 3 insertions, 3 deletions
diff --git a/Sources/track.swift b/Sources/track.swift
index efc09f4..d2a9047 100644
--- a/Sources/track.swift
+++ b/Sources/track.swift
@@ -1,7 +1,7 @@
/// Contains the artist and name of a track
-public class Track {
- public let name: String
- public let artist: String
+class Track {
+ let name: String
+ let artist: String
init(withName trackName: String, andArtist trackArtist: String) {