]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
Spelling fixes.
authorVille Skyttä <ville.skytta@iki.fi>
Sun, 7 Apr 2013 08:12:07 +0000 (11:12 +0300)
committerKarel Zak <kzak@redhat.com>
Mon, 8 Apr 2013 15:06:55 +0000 (17:06 +0200)
Signed-off-by: Ville Skyttä <ville.skytta@iki.fi>
Documentation/TODO
libfdisk/src/context.c
libmount/src/context_mount.c

index 9596ccecd3d2b2590ea02a84f0ca6fadb054bd48..fe67f12a9f4942eace65be788ff5b39db46d7fc7 100644 (file)
@@ -11,7 +11,7 @@ hwlock
 bash completion
 ---------------
 - Optional argument handling requires user to press backspace to get
-  argument completetion.
+  argument completion.
 - Comma separated value, e.g., --output 'value1,value2', are not
   completed for users.
 
index c9613926caf46fae7b50bd992ade1eaf7f064bc2..7569e5b5257edecfab9fbf938c605a407648ac37 100644 (file)
@@ -146,7 +146,7 @@ static void reset_context(struct fdisk_context *cxt)
  * the device with read-write mode and will fallback to read-only if
  * unsuccessful.
  *
- * Returns: 0 on sucess, < 0 on error.
+ * Returns: 0 on success, < 0 on error.
  */
 int fdisk_context_assign_device(struct fdisk_context *cxt,
                                const char *fname, int readonly)
@@ -224,7 +224,7 @@ void fdisk_free_context(struct fdisk_context *cxt)
  * @ask_cb: callback
  * @data: callback data
  *
- * Returns: 0 on sucess, < 0 on error.
+ * Returns: 0 on success, < 0 on error.
  */
 int fdisk_context_set_ask(struct fdisk_context *cxt,
                int (*ask_cb)(struct fdisk_context *, struct fdisk_ask *, void *),
index 3b280ab9b6cbc01649e1cd44b339658f3d85fbaf..d28736126d350a955956f0130af5ea610204ea0f 100644 (file)
@@ -24,7 +24,7 @@
 
 /*
  * Kernel supports only one MS_PROPAGATION flag change by one mount(2) syscall,
- * to bypass this restriction we call mount(2) per flag. It's realy not a perfect
+ * to bypass this restriction we call mount(2) per flag. It's really not a perfect
  * solution, but it's the same like to execute multiple mount(8) commands.
  *
  * We use cxt->addmounts (additional mounts) list to keep order of the requested
@@ -865,7 +865,7 @@ int mnt_context_do_mount(struct libmnt_context *cxt)
        type = mnt_fs_get_fstype(cxt->fs);
        if (type) {
                if (strchr(type, ','))
-                       /* this only happen if fstab countains list of filesystems */
+                       /* this only happens if fstab contains list of filesystems */
                        res = do_mount_by_pattern(cxt, type);
                else
                        res = do_mount(cxt, NULL);