summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/strutils.c2
-rw-r--r--libfdisk/src/partition.c2
-rw-r--r--libmount/src/tab.c2
-rw-r--r--libsmartcols/src/version.c2
-rw-r--r--login-utils/last.c2
-rw-r--r--sys-utils/fstrim.c2
6 files changed, 6 insertions, 6 deletions
diff --git a/lib/strutils.c b/lib/strutils.c
index 31bf9e2af..9fe9481bc 100644
--- a/lib/strutils.c
+++ b/lib/strutils.c
@@ -47,7 +47,7 @@ static int do_scale_by_power (uintmax_t *x, int base, int power)
* The optinal 'power' variable returns number associated with used suffix
* {K,M,G,T,P,E,Z,Y} = {1,2,3,4,5,6,7,8}.
*
- * The funtion also supports decimal point, for example:
+ * The function also supports decimal point, for example:
* 0.5MB = 500000
* 0.5MiB = 512000
*
diff --git a/libfdisk/src/partition.c b/libfdisk/src/partition.c
index 70f707cbb..32473a3ab 100644
--- a/libfdisk/src/partition.c
+++ b/libfdisk/src/partition.c
@@ -303,7 +303,7 @@ int fdisk_partition_next_partno(
*
* Returns info about partition converted to printable string.
*
- * For exmaple
+ * For example
*
* struct fdisk_parition *pa;
*
diff --git a/libmount/src/tab.c b/libmount/src/tab.c
index fd6a7d8e2..4094fb878 100644
--- a/libmount/src/tab.c
+++ b/libmount/src/tab.c
@@ -390,7 +390,7 @@ int mnt_table_append_trailing_comment(struct libmnt_table *tb, const char *comm)
* same cache between more threads -- currently the cache does not provide any
* locking method.
*
- * This function increments cache refrence counter. It's recomented to use
+ * This function increments cache reference counter. It's recomented to use
* mnt_unref_cache() after mnt_table_set_cache() if you want to keep the cache
* referenced by @tb only.
*
diff --git a/libsmartcols/src/version.c b/libsmartcols/src/version.c
index 9aa4e3366..e592cccfd 100644
--- a/libsmartcols/src/version.c
+++ b/libsmartcols/src/version.c
@@ -11,7 +11,7 @@
* @title: Version functions
* @short_description: functions to get the library version.
*
- * Note that library version is not the same thing as SONAME verison. The
+ * Note that library version is not the same thing as SONAME version. The
* libsmarcols uses symbols versioning and SONAME is not modified for releases.
*
* The library version and symbols version follow util-linux package versioning.
diff --git a/login-utils/last.c b/login-utils/last.c
index ba58c4433..4c70eaaaf 100644
--- a/login-utils/last.c
+++ b/login-utils/last.c
@@ -401,7 +401,7 @@ static int list(const struct last_control *ctl, struct utmp *p, time_t t, int wh
utline[4] = 0;
/*
- * Is this something we wanna show?
+ * Is this something we want to show?
*/
if (ctl->show) {
char **walk;
diff --git a/sys-utils/fstrim.c b/sys-utils/fstrim.c
index c51c7a804..d52d83194 100644
--- a/sys-utils/fstrim.c
+++ b/sys-utils/fstrim.c
@@ -118,7 +118,7 @@ static int has_discard(const char *devname, struct sysfs_cxt *wholedisk)
* This is tricky to read the info from sys/, because the queue
* atrributes are provided for whole devices (disk) only. We're trying
* to reuse the whole-disk sysfs context to optimize this stuff (as
- * system usualy have just one disk only).
+ * system usually have just one disk only).
*/
if (sysfs_devno_to_wholedisk(dev, NULL, 0, &disk) || !disk)
return 1;