diff --git a/docs/manual.html b/docs/manual.html
index 7d564f802..55a12706b 100755
--- a/docs/manual.html
+++ b/docs/manual.html
@@ -191,6 +191,7 @@ means it can resume a torrent downloaded by any client.
supports the compact=1 tracker parameter.
selective downloading. The ability to select which parts of a torrent you
want to download.
+ip filter
libtorrent is portable at least among Windows, MacOSX and other UNIX-systems. It uses Boost.Thread,
@@ -813,7 +814,7 @@ void add_file(boost::filesystem::path file, size_type size);
the comment that belongs to this torrent. The comment can be retrieved with the
comment() member.
set_piece_size() will set the size of each piece in this torrent. The piece size must
-be an even multiple of 2. i.e. usually something like 256 kB, 512 kB, 1024 kB etc. The
+be an even multiple of 2. i.e. usually something like 256 kiB, 512 kiB, 1024 kiB etc. The
size is given in number of bytes.
set_creator() is an optional attribute that can be used to identify your application
that was used to create the torrent file.
@@ -2420,7 +2421,8 @@ int main(int argc, char* argv[])
if (argc != 4)
{
- std::cerr << "usage: make_torrent <output torrent-file> <announce url> <file or directory to create torrent from>\n";
+ std::cerr << "usage: make_torrent <output torrent-file> <announce url> "
+ "<file or directory to create torrent from>\n";
return 1;
}
diff --git a/docs/manual.rst b/docs/manual.rst
index 2432497a7..cf7e81084 100755
--- a/docs/manual.rst
+++ b/docs/manual.rst
@@ -52,6 +52,7 @@ The current state includes the following features:
* supports the ``compact=1`` tracker parameter.
* selective downloading. The ability to select which parts of a torrent you
want to download.
+ * ip filter
__ http://home.elp.rr.com/tur/multitracker-spec.txt
.. _Azureus: http://azureus.sourceforge.net
@@ -714,7 +715,7 @@ the comment that belongs to this torrent. The comment can be retrieved with the
``comment()`` member.
``set_piece_size()`` will set the size of each piece in this torrent. The piece size must
-be an even multiple of 2. i.e. usually something like 256 kB, 512 kB, 1024 kB etc. The
+be an even multiple of 2. i.e. usually something like 256 kiB, 512 kiB, 1024 kiB etc. The
size is given in number of bytes.
``set_creator()`` is an optional attribute that can be used to identify your application
@@ -2482,7 +2483,8 @@ Shows how to create a torrent from a directory tree::
if (argc != 4)
{
- std::cerr << "usage: make_torrent