Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit f57ea73

Browse files
committed
Fix misc typos (Atsushi SAKAI)
1 parent b1e511a commit f57ea73

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

man/en/virt-install.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ Check that the number virtual cpus requested does not exceed physical CPUs and w
189189
if they do.
190190
.IP "\-\-cpuset=CPUSET" 4
191191
.IX Item "--cpuset=CPUSET"
192-
Set which physical cpus the guest can use. \f(CW\*(C`CPUSET\*(C'\fR is a comma seperated list of numbers, which can also be specified in ranges. Example:
192+
Set which physical cpus the guest can use. \f(CW\*(C`CPUSET\*(C'\fR is a comma separated list of numbers, which can also be specified in ranges. Example:
193193
.Sp
194194
.Vb 2
195195
\& 0,2,3,5 : Use processors 0,2,3 and 5

man/en/virt-install.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ if they do.
7272

7373
=item --cpuset=CPUSET
7474

75-
Set which physical cpus the guest can use. C<CPUSET> is a comma seperated list of numbers, which can also be specified in ranges. Example:
75+
Set which physical cpus the guest can use. C<CPUSET> is a comma separated list of numbers, which can also be specified in ranges. Example:
7676

7777
0,2,3,5 : Use processors 0,2,3 and 5
7878
1-3,5,6-8 : Use processors 1,2,3,5,6,7 and 8

virtinst/ImageFetcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def acquireFile(self, filename, progresscb):
8989
progress_obj = progresscb, \
9090
text = _("Retrieving file %s...") % base)
9191
except IOError, e:
92-
raise ValueError, _("Couldn't aquire file %s: %s") %\
92+
raise ValueError, _("Couldn't acquire file %s: %s") %\
9393
((self.location + "/" + filename), str(e))
9494
tmpname = self.saveTemp(file, prefix=base + ".")
9595
logging.debug("Saved file to " + tmpname)

virtinst/OSDistro.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def extractRPMNames(self, filelist):
236236
filelistData.close()
237237

238238
# We have a kernel RPM and a install-initrd RPM with a generic initrd in it
239-
# Now we have to munge the two together to build an initrd capable of
239+
# Now we have to merge the two together to build an initrd capable of
240240
# booting the installer.
241241
#
242242
# Yes, this is crazy ass stuff :-)

virtinst/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def default_route():
3131
defn = 0
3232
for line in d.xreadlines():
3333
info = line.split()
34-
if (len(info) != 11): # 11 = typlical num of fields in the file
34+
if (len(info) != 11): # 11 = typical num of fields in the file
3535
print >> stderr, _("Invalid line length while parsing %s.") %(route_file)
3636
print >> stderr, _("Defaulting bridge to xenbr%d") % (defn)
3737
break

0 commit comments

Comments
 (0)