aboutsummaryrefslogtreecommitdiff
path: root/torrent/torrent.go
diff options
context:
space:
mode:
Diffstat (limited to 'torrent/torrent.go')
-rw-r--r--torrent/torrent.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/torrent/torrent.go b/torrent/torrent.go
index f0c4b67..f6e7678 100644
--- a/torrent/torrent.go
+++ b/torrent/torrent.go
@@ -2,13 +2,13 @@ import "time"
type File struct {
Length int `bencode:"length"`
- MD5Sum []byte `bencode:md5sum,omitempty"`
+ MD5Sum []byte `bencode:"md5sum,omitempty"`
Path string `bencode:"path"`
}
type Info struct {
Length int `bencode:"length"`
- MD5Sum []byte `bencode:md5sum,omitempty"`
+ MD5Sum []byte `bencode:"md5sum,omitempty"`
Name string `bencode:"name"`
PieceLength int `bencode:"piece length"`
Pieces []byte `bencode:"pieces"`