]> git.r.bdr.sh - rbdr/lyricli/blobdiff - Sources/track.swift
Improve comments in code
[rbdr/lyricli] / Sources / track.swift
index d2a9047faa6e4a21bce15b0f15fd3711a312135d..ead43591661ad16939e29cd73fda6d1342418e9d 100644 (file)
@@ -1,6 +1,10 @@
-/// Contains the artist and name of a track
+// Holds the name and artist of a track
 class Track {
+
+    // The name of the track to search for
     let name: String
+
+    // The name of the artist
     let artist: String
 
     init(withName trackName: String, andArtist trackArtist: String) {