Skip to content

Commit 36849c3

Browse files
authored
Merge pull request #330 from dmd/master
add missing word "store"
2 parents 00bdced + 989a26e commit 36849c3

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

doc/duc.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ limit index to only files/dirs owned by uid
107107
limit index to only files/dirs owned by username
108108
.TP
109109
\fB\-m\fR, \fB\-\-max\-depth=VAL\fR
110-
limit directory names to given depth\. when this option is given duc will traverse the complete file system, but will only the first VAL levels of directories in the database to reduce the size of the index
110+
limit directory names to given depth\. when this option is given duc will traverse the complete file system, but will only store the first VAL levels of directories in the database to reduce the size of the index
111111
.TP
112112
\fB\-x\fR, \fB\-\-one\-file\-system\fR
113113
skip directories on different file systems

doc/duc.1.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/duc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ Options for command `duc index [options] PATH ...`:
166166
limit index to only files/dirs owned by username
167167

168168
* `-m`, `--max-depth=VAL`:
169-
limit directory names to given depth. when this option is given duc will traverse the complete file system, but will only the first VAL levels of directories in the database to reduce the size of the index
169+
limit directory names to given depth. when this option is given duc will traverse the complete file system, but will only store the first VAL levels of directories in the database to reduce the size of the index
170170

171171

172172
* `-x`, `--one-file-system`:

src/duc/cmd-index.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ static struct ducrc_option options[] = {
177177
{ &opt_uid, "uid", 'U', DUCRC_TYPE_INT, "limit index to only files/dirs owned by uid" },
178178
{ &opt_username, "username", 'u', DUCRC_TYPE_STRING, "limit index to only files/dirs owned by username" },
179179
{ &opt_max_depth, "max-depth", 'm', DUCRC_TYPE_INT, "limit directory names to given depth" ,
180-
"when this option is given duc will traverse the complete file system, but will only the first VAL "
181-
"levels of directories in the database to reduce the size of the index" },
180+
"when this option is given duc will traverse the complete file system, but will only store the "
181+
"first VAL levels of directories in the database to reduce the size of the index" },
182182
{ &opt_one_file_system, "one-file-system", 'x', DUCRC_TYPE_BOOL, "skip directories on different file systems" },
183183
{ &opt_progress, "progress", 'p', DUCRC_TYPE_BOOL, "show progress during indexing" },
184184
{ &opt_dryrun, "dry-run", 0 , DUCRC_TYPE_BOOL, "do not update database, just crawl" },

0 commit comments

Comments
 (0)