]> Sergey Matveev's repositories - btrtrc.git/commitdiff
README: Improve wording around torrent as a library
authorMatt Joiner <anacrolix@gmail.com>
Tue, 12 Sep 2017 08:30:54 +0000 (18:30 +1000)
committerMatt Joiner <anacrolix@gmail.com>
Tue, 12 Sep 2017 08:31:56 +0000 (18:31 +1000)
README.md

index db04ede9c3267298c7cb856f81d56def90a03c75..ecdbf039ea1b63061503465a8306713cd8b94fbf 100644 (file)
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@
 
 This repository implements BitTorrent-related packages and command-line utilities in Go. The emphasis is on use as a library from other projects. It's been used 24/7 in production by a downstream, private service since late 2014.
 
-There is support for protocol encryption, [DHT](https://github.com/anacrolix/dht), PEX, [uTP](https://github.com/anacrolix/utp), and various extensions. See the package documentation for a more complete list. There are several data storage backends provided: blob, file, and mmap, and you can write your own, such as to store data on S3, or in a database. You can use the provided binaries in `./cmd`, or use `torrent` as a library for your own applications.
+There is support for protocol encryption, [DHT](https://github.com/anacrolix/dht), PEX, [uTP](https://github.com/anacrolix/utp), and various extensions. See the package documentation for a more complete list. There are several data storage backends provided: blob, file, and mmap, and you can write your own, such as to store data on S3, or in a database. You can use the provided binaries in `./cmd`, or use package `torrent` as a library for your own applications.
 
 Many of the sub-packages can be used for other purposes: [bencode](https://godoc.org/github.com/anacrolix/torrent/bencode), and [tracker](https://godoc.org/github.com/anacrolix/torrent/tracker), in particular.