aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Scott <nathans@debian.org>2018-02-23 13:05:17 -0600
committerEric Sandeen <sandeen@redhat.com>2018-02-23 13:05:17 -0600
commit9ae168bb755ae62ff388fceab6ab867434e0df7b (patch)
tree9bae88bd1c628ff118f9b85ef062fc1daca67619
parentc448626f43780bf0f3b53248fea93e8b6e01c5ad (diff)
downloadxfsprogs-dev-9ae168bb755ae62ff388fceab6ab867434e0df7b.tar.gz
Fix grammar and spelling in strings and man pages
Signed-off-by: Nathan Scott <nathans@debian.org> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Eric Sandeen <sandeen@redhat.com> Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
-rw-r--r--io/mmap.c2
-rw-r--r--io/prealloc.c2
-rw-r--r--man/man8/xfs_io.82
-rw-r--r--man/man8/xfs_quota.84
-rw-r--r--mkfs/xfs_mkfs.c12
5 files changed, 11 insertions, 11 deletions
diff --git a/io/mmap.c b/io/mmap.c
index f905989bd0..106be49989 100644
--- a/io/mmap.c
+++ b/io/mmap.c
@@ -623,7 +623,7 @@ mremap_help(void)
" Examples:\n"
" 'mremap 8192' - resizes the current mapping to 8192 bytes.\n"
"\n"
-" Resizes the mappping, growing or shrinking from the current size.\n"
+" Resizes the mapping, growing or shrinking from the current size.\n"
" The default stored value is 'X', repeated to fill the range specified.\n"
" -f <new_address> -- use MREMAP_FIXED flag to mremap on new_address\n"
" -m -- use the MREMAP_MAYMOVE flag\n"
diff --git a/io/prealloc.c b/io/prealloc.c
index 1a1c9ca37d..572197c044 100644
--- a/io/prealloc.c
+++ b/io/prealloc.c
@@ -407,7 +407,7 @@ prealloc_init(void)
fpunch_cmd.flags = CMD_NOMAP_OK | CMD_FOREIGN_OK;
fpunch_cmd.args = _("off len");
fpunch_cmd.oneline =
- _("de-allocates space assocated with part of a file via fallocate");
+ _("de-allocates space associated with part of a file via fallocate");
add_command(&fpunch_cmd);
fcollapse_cmd.name = "fcollapse";
diff --git a/man/man8/xfs_io.8 b/man/man8/xfs_io.8
index b47076082a..8bf3f57bd3 100644
--- a/man/man8/xfs_io.8
+++ b/man/man8/xfs_io.8
@@ -827,7 +827,7 @@ or MREMAP_MAYMOVE
.RB ( \-m ).
.IR new_length
specifies a page-aligned address to which the mapping must be moved. It
-can be setted to 139946004389888, 4096k or 1g etc.
+can be set to 139946004389888, 4096k or 1g etc.
.TP
.B mrm
See the
diff --git a/man/man8/xfs_quota.8 b/man/man8/xfs_quota.8
index 03add20cd7..4ec575fd12 100644
--- a/man/man8/xfs_quota.8
+++ b/man/man8/xfs_quota.8
@@ -603,10 +603,10 @@ and
.B \-s
options allow the directory tree quota mechanism to be maintained.
.BR \-d
-allows to limit recursion level when processing project directories
+allows one to limit recursion level when processing project directories
and
.BR \-p
-allows to specify project paths at command line ( instead of
+allows one to specify project paths at command line ( instead of
.I /etc/projects
). All options are discussed in detail below.
.SH DIRECTORY TREE QUOTA
diff --git a/mkfs/xfs_mkfs.c b/mkfs/xfs_mkfs.c
index b20e3d6825..5950985388 100644
--- a/mkfs/xfs_mkfs.c
+++ b/mkfs/xfs_mkfs.c
@@ -1939,28 +1939,28 @@ _("Minimum inode size for CRCs is %d bytes\n"),
/* inodes always aligned */
if (!cli->sb_feat.inode_align) {
fprintf(stderr,
-_("Inodes always aligned for CRC enabled filesytems\n"));
+_("Inodes always aligned for CRC enabled filesystems\n"));
usage();
}
/* lazy sb counters always on */
if (!cli->sb_feat.lazy_sb_counters) {
fprintf(stderr,
-_("Lazy superblock counted always enabled for CRC enabled filesytems\n"));
+_("Lazy superblock counted always enabled for CRC enabled filesystems\n"));
usage();
}
/* version 2 logs always on */
if (cli->sb_feat.log_version != 2) {
fprintf(stderr,
-_("V2 logs always enabled for CRC enabled filesytems\n"));
+_("V2 logs always enabled for CRC enabled filesystems\n"));
usage();
}
/* attr2 always on */
if (cli->sb_feat.attr_version != 2) {
fprintf(stderr,
-_("V2 attribute format always enabled on CRC enabled filesytems\n"));
+_("V2 attribute format always enabled on CRC enabled filesystems\n"));
usage();
}
@@ -1968,14 +1968,14 @@ _("V2 attribute format always enabled on CRC enabled filesytems\n"));
/* attr2 always on */
if (!cli->sb_feat.projid32bit) {
fprintf(stderr,
-_("32 bit Project IDs always enabled on CRC enabled filesytems\n"));
+_("32 bit Project IDs always enabled on CRC enabled filesystems\n"));
usage();
}
/* ftype always on */
if (!cli->sb_feat.dirftype) {
fprintf(stderr,
-_("Directory ftype field always enabled on CRC enabled filesytems\n"));
+_("Directory ftype field always enabled on CRC enabled filesystems\n"));
usage();
}