Skip to content

Commit

Permalink
rename go module (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
jessepeterson authored Dec 2, 2024
1 parent 0993743 commit 69fee72
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion binary_parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func newBinaryParser(r io.ReadSeeker) (*binaryParser, error) {
}

// numObjectsMax is arbitrary. Please fix.
// TODO(github.com/groob/plist/issues/28)
// TODO(github.com/micromdm/plist/issues/28)
if bp.NumObjects > numObjectsMax {
return nil, fmt.Errorf("plist: offset size larger than expected %d", numObjectsMax)
}
Expand Down
2 changes: 1 addition & 1 deletion example_unmarshaler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package plist_test
import (
"fmt"

"github.com/groob/plist"
"github.com/micromdm/plist"
)

const data = `<?xml version="1.0" encoding="UTF-8"?>
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/groob/plist
module github.com/micromdm/plist

go 1.14

0 comments on commit 69fee72

Please sign in to comment.