From 7f97433a3c067ea7c2a2a159b09720c0772605c8 Mon Sep 17 00:00:00 2001 From: Yuri Chornoivan Date: Fri, 11 Jan 2019 17:14:21 +0000 Subject: [PATCH] Fix miscellaneous typos in comments. --- fish/tilde.c | 2 +- generator/perl.ml | 2 +- resize/virt-resize.pod | 2 +- v2v/linux.mli | 2 +- v2v/parse_ova.ml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/fish/tilde.c b/fish/tilde.c index 8bbb898cc..42e10c5a2 100644 --- a/fish/tilde.c +++ b/fish/tilde.c @@ -75,7 +75,7 @@ try_tilde_expansion (char *str) } } - /* No match, return the orignal string. */ + /* No match, return the original string. */ return str; } diff --git a/generator/perl.ml b/generator/perl.ml index f39795df6..795834901 100644 --- a/generator/perl.ml +++ b/generator/perl.ml @@ -344,7 +344,7 @@ PREINIT: | RStringList _ | RStruct _ | RStructList _ | RHashtable _ -> - pr "void\n" (* all lists returned implictly on the stack *) + pr "void\n" (* all lists returned implicitly on the stack *) ); (* Call and arguments. *) pr "%s (g" name; diff --git a/resize/virt-resize.pod b/resize/virt-resize.pod index 0461d7652..9ecb0c6b3 100644 --- a/resize/virt-resize.pod +++ b/resize/virt-resize.pod @@ -811,7 +811,7 @@ expand that type of filesystem. In both cases, virt-resize will not expand the mentioned filesystem; the result (unless I<--unknown-filesystems error> is specified) is that the partitions containing such filesystems will be actually -bigger as requested, but the filesystems will still be usable at the +bigger as requested, but the filesystems will still be usable at their older sizes. =head1 ALTERNATIVE TOOLS diff --git a/v2v/linux.mli b/v2v/linux.mli index 7e4a6fe05..0a5991d12 100644 --- a/v2v/linux.mli +++ b/v2v/linux.mli @@ -24,7 +24,7 @@ val augeas_reload : Guestfs.guestfs -> unit that augeas found. *) val install_local: Guestfs.guestfs -> Types.inspect -> string list -> unit -(** Install pacakge(s). *) +(** Install package(s). *) val remove : Guestfs.guestfs -> Types.inspect -> string list -> unit (** Uninstall package(s). *) diff --git a/v2v/parse_ova.ml b/v2v/parse_ova.ml index 1e5042f2a..ef6a03b3a 100644 --- a/v2v/parse_ova.ml +++ b/v2v/parse_ova.ml @@ -420,7 +420,7 @@ let get_tar_offet_and_size tar filename = with Failure _ -> failwithf (f_"invalid size returned by tar: %S") size in - (* Note: Offset is actualy block number and there is a single + (* Note: Offset is actually block number and there is a single * block with tar header at the beginning of the file. So skip * the header and convert the block number to bytes before * returning.