]> Sergey Matveev's repositories - btrtrc.git/commitdiff
Comment typo (#110)
authorBen Gadbois <enharmonicdistortion@gmail.com>
Tue, 6 Sep 2016 23:43:29 +0000 (16:43 -0700)
committerMatt Joiner <anacrolix@gmail.com>
Tue, 6 Sep 2016 23:43:29 +0000 (09:43 +1000)
metainfo/magnet.go

index 2d99cccaebd37592d15f3c07f9b645981268d97a..8da585be4129ecf95cf9b010a4f89e2aa6b46225 100644 (file)
@@ -50,7 +50,7 @@ func ParseMagnetURI(uri string) (m Magnet, err error) {
        infoHash := xt[len(xtPrefix):]
 
        // BTIH hash can be in HEX or BASE32 encoding
-       // will assign apropriate func judging from symbol length
+       // will assign appropriate func judging from symbol length
        var decode func(dst, src []byte) (int, error)
        switch len(infoHash) {
        case 40: