Skip to content

Commit 204f60e

Browse files
committed
fix PR comments
1 parent 364ecce commit 204f60e

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

mpd.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ func (m *MPD) Decode(b []byte) error {
148148
return xml.Unmarshal(b, m)
149149
}
150150

151-
// ProgramInformation - MPD Program info
151+
// ProgramInformation - MPD Program info.
152152
type ProgramInformation struct {
153153
Title string `xml:"Title,omitempty"`
154154
}
@@ -454,7 +454,7 @@ func modifyPssh(p *Pssh) *psshMarshal {
454454
}
455455
}
456456

457-
// DescriptorType - used in many places to represent data
457+
// DescriptorType - used in many places to represent data.
458458
type DescriptorType struct {
459459
SchemeIDURI *string `xml:"schemeIdUri,attr"`
460460
Value *string `xml:"value,attr,omitempty"`

mpd_test.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package mpd
22

33
import (
4-
"fmt"
54
"io/ioutil"
65
"reflect"
76
"strings"
@@ -18,7 +17,6 @@ type MPDSuite struct{}
1817
var _ = Suite(&MPDSuite{})
1918

2019
func testUnmarshalMarshal(c *C, name string) {
21-
fmt.Println(name)
2220
expected, err := ioutil.ReadFile(name)
2321
c.Assert(err, IsNil)
2422

0 commit comments

Comments
 (0)