aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2016-06-11 00:19:02 +0200
committerDimitri Sokolyuk <demon@dim13.org>2016-06-11 00:19:02 +0200
commita7e99ff68c9b2c999bd33d5681bf97686b1edd16 (patch)
tree39cb36ae201b763164f9dd5c61782a77cda9d649
parent67eaf4f695013694ab1824f16f4e93eac2275dcc (diff)
typo
-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"`