summaryrefslogtreecommitdiffstats
path: root/lib/strutils.c
diff options
context:
space:
mode:
authorBernhard Voelker2012-04-20 00:10:44 +0200
committerKarel Zak2012-04-23 13:16:35 +0200
commit455fe9a075cc59e3250af9c413d42e7ac47a86a9 (patch)
treeb5aae6ccef42cb7c5c459d6c6951957528d06c88 /lib/strutils.c
parentfdisk: simplify device opening (diff)
downloadkernel-qcow2-util-linux-455fe9a075cc59e3250af9c413d42e7ac47a86a9.tar.gz
kernel-qcow2-util-linux-455fe9a075cc59e3250af9c413d42e7ac47a86a9.tar.xz
kernel-qcow2-util-linux-455fe9a075cc59e3250af9c413d42e7ac47a86a9.zip
Fix typos found by misspellings
The tool misspellings (https://github.com/lyda/misspell-check) detected several typos. Command used: $ git ls-files | grep -v ^po/ | misspellings -f - * isosize: Fix typo in usage string. * configure.ac: Fix typo in help string of --enable-most-builds option. * fdisk: Fix typo in man page. * libblkid, blkid, mount: Likewise. * Fix various typos in docs and in source code comments. Signed-off-by: Bernhard Voelker <mail@bernhard-voelker.de>
Diffstat (limited to 'lib/strutils.c')
-rw-r--r--lib/strutils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/strutils.c b/lib/strutils.c
index 477461458..372558acd 100644
--- a/lib/strutils.c
+++ b/lib/strutils.c
@@ -429,7 +429,7 @@ int string_to_idarray(const char *list, int ary[], size_t arysz,
* LIST ::= <item> [, <item>]
*
* The <item> is translated to 'id' by name2id() function and the 'id' is used
- * as a possition in the 'ary' bit array. It means that the 'id' has to be in
+ * as a position in the 'ary' bit array. It means that the 'id' has to be in
* range <0..N> where N < sizeof(ary) * NBBY.
*
* Returns: 0 on success, <0 on error.