From 84e896eb095ddc9ea94942233711c89a903dfa5c Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Wed, 5 Dec 2007 17:10:31 +0000 Subject: [PATCH] 2007-12-06 Tatsuhiro Tsujikawa Fixed typo * src/version_usage.cc Updated doc * doc/aria2c.1.txt * doc/aria2c.1 --- ChangeLog | 9 +++++++++ doc/aria2c.1 | 8 ++++---- doc/aria2c.1.txt | 6 +++--- src/version_usage.cc | 4 ++-- 4 files changed, 18 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index 84673f54..af5cf080 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2007-12-06 Tatsuhiro Tsujikawa + + Fixed typo + * src/version_usage.cc + + Updated doc + * doc/aria2c.1.txt + * doc/aria2c.1 + 2007-12-05 Tatsuhiro Tsujikawa Fixed compile error without message digest support. diff --git a/doc/aria2c.1 b/doc/aria2c.1 index 4360f45b..1911f94f 100644 --- a/doc/aria2c.1 +++ b/doc/aria2c.1 @@ -1,11 +1,11 @@ .\" Title: aria2c .\" Author: .\" Generator: DocBook XSL Stylesheets v1.73.1 -.\" Date: 12/04/2007 +.\" Date: 12/05/2007 .\" Manual: .\" Source: .\" -.TH "ARIA2C" "1" "12/04/2007" "" "" +.TH "ARIA2C" "1" "12/05/2007" "" "" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -218,7 +218,7 @@ or .PP \-\-enable\-direct\-io[=\fItrue\fR|\fIfalse\fR] .RS 4 -Enable directI/O, which lowers cpu usage while allocating files\. Turn off if you encounter any error\. Default: +Enable directI/O, which lowers cpu usage while allocating/checking files\. Turn off if you encounter any error\. Default: \fIfalse\fR .RE .PP @@ -339,7 +339,7 @@ The path to the \.torrent file\. .PP \-\-follow\-torrent=\fItrue\fR|\fIfalse\fR|\fImem\fR .RS 4 -If true or mem is specified, when a file whose suffix is \.metaink or content type is application/x\-bittorrent is downloaded, aria2 parses it as a torrent file and downloads files mentioned in it\. If mem is specified, a metalink file is not written to the disk, but is just kept in memory\. If false is specified, the action mentioned above is not taken\. Default: true +If true or mem is specified, when a file whose suffix is \.torrent or content type is application/x\-bittorrent is downloaded, aria2 parses it as a torrent file and downloads files mentioned in it\. If mem is specified, a torrent file is not written to the disk, but is just kept in memory\. If false is specified, the action mentioned above is not taken\. Default: true .RE .PP \-\-direct\-file\-mapping=\fItrue\fR|\fIfalse\fR diff --git a/doc/aria2c.1.txt b/doc/aria2c.1.txt index f239bdcc..39c5f4f7 100644 --- a/doc/aria2c.1.txt +++ b/doc/aria2c.1.txt @@ -136,7 +136,7 @@ OPTIONS Default: '5M' --enable-direct-io[='true'|'false']:: - Enable directI/O, which lowers cpu usage while allocating files. + Enable directI/O, which lowers cpu usage while allocating/checking files. Turn off if you encounter any error. Default: 'false' @@ -244,10 +244,10 @@ OPTIONS The path to the .torrent file. --follow-torrent='true'|'false'|'mem':: - If true or mem is specified, when a file whose suffix is .metaink or content + If true or mem is specified, when a file whose suffix is .torrent or content type is application/x-bittorrent is downloaded, aria2 parses it as a torrent file and downloads files mentioned in it. - If mem is specified, a metalink file is not written to the disk, but is just + If mem is specified, a torrent file is not written to the disk, but is just kept in memory. If false is specified, the action mentioned above is not taken. Default: true diff --git a/src/version_usage.cc b/src/version_usage.cc index 4fa81fa4..f2608449 100644 --- a/src/version_usage.cc +++ b/src/version_usage.cc @@ -249,11 +249,11 @@ void showUsage() { #ifdef ENABLE_BITTORRENT cout << _(" -T, --torrent-file=TORRENT_FILE The path to the .torrent file.") << endl; cout << _(" --follow-torrent=true|false|mem If true or mem is specified, when a file\n" - " whose suffix is .metaink or content type is\n" + " whose suffix is .torrent or content type is\n" " application/x-bittorrent is downloaded, aria2\n" " parses it as a torrent file and downloads files\n" " mentioned in it.\n" - " If mem is specified, a metalink file is not\n" + " If mem is specified, a torrent file is not\n" " written to the disk, but is just kept in memory.\n" " If false is specified, the action mentioned above\n" " is not taken.") << "\n"