Skip to content

Commit

Permalink
Delete some dots from README
Browse files Browse the repository at this point in the history
  • Loading branch information
n10v authored Apr 13, 2022
1 parent 6a32f9d commit 28e96ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ func main() {
}
defer tag.Close()

// Read tags.
// Read tags
fmt.Println(tag.Artist())
fmt.Println(tag.Title())

// Set tags.
// Set tags
tag.SetArtist("Aphex Twin")
tag.SetTitle("Xtal")

Expand All @@ -47,7 +47,7 @@ func main() {
}
tag.AddCommentFrame(comment)

// Write tag to file.mp3.
// Write tag to file.mp3
if err = tag.Save(); err != nil {
log.Fatal("Error while saving a tag: ", err)
}
Expand All @@ -64,7 +64,7 @@ for _, f := range pictures {
log.Fatal("Couldn't assert picture frame")
}

// Do something with picture frame.
// Do something with picture frame
fmt.Println(pic.Description)
}
```
Expand Down

0 comments on commit 28e96ce

Please sign in to comment.