From 28e96ce23f7ad1d6d9777d7a01a55c49f4b7901d Mon Sep 17 00:00:00 2001 From: Albert Nigmatzianov Date: Wed, 13 Apr 2022 10:11:27 +0200 Subject: [PATCH] Delete some dots from README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6d137c8..05c4e1b 100644 --- a/README.md +++ b/README.md @@ -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") @@ -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) } @@ -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) } ```