Skip to content

Commit

Permalink
Renames package
Browse files Browse the repository at this point in the history
  • Loading branch information
c4milo committed Nov 9, 2015
1 parent c680383 commit b761c67
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 10 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# iso9660
4 changes: 1 addition & 3 deletions cmd/isofs/main.go → cmd/iso9660/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import (
"path/filepath"
"runtime"
"strings"

isofs "github.com/hooklift/iso"
)

func main() {
Expand All @@ -16,7 +14,7 @@ func main() {
panic(err)
}

r, err := isofs.NewReader(file)
r, err := iso9660.NewReader(file)
if err != nil {
panic(err)
}
Expand Down
4 changes: 2 additions & 2 deletions isofs.go → iso9660.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Package isofs implements ECMA-119 standard, also known as ISO9660.
// Package iso9660 implements ECMA-119 standard, also known as ISO 9660.
// References:
// * https://en.wikipedia.org/wiki/ISO_9660
// * http://alumnus.caltech.edu/~pje/iso9660.html
Expand All @@ -7,7 +7,7 @@
// * http://www.drdobbs.com/database/inside-the-iso-9660-filesystem-format/184408899
// * http://www.cdfs.com
// * http://wiki.osdev.org/ISO_9660
package isofs
package iso9660

import (
"io"
Expand Down
1 change: 1 addition & 0 deletions iso9660_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package iso9660
1 change: 0 additions & 1 deletion isofs_test.go

This file was deleted.

2 changes: 1 addition & 1 deletion reader.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package isofs
package iso9660

import (
"encoding/binary"
Expand Down
2 changes: 1 addition & 1 deletion reader_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package isofs
package iso9660

import (
"os"
Expand Down
2 changes: 1 addition & 1 deletion writer.go
Original file line number Diff line number Diff line change
@@ -1 +1 @@
package isofs
package iso9660
2 changes: 1 addition & 1 deletion writer_test.go
Original file line number Diff line number Diff line change
@@ -1 +1 @@
package isofs
package iso9660

0 comments on commit b761c67

Please sign in to comment.