diff -r eb7c2ca2f546 man/en/virt-install.1
--- a/man/en/virt-install.1	Wed Feb 27 16:27:06 2008 -0500
+++ b/man/en/virt-install.1	Fri Feb 29 14:43:19 2008 +0900
@@ -189,7 +189,7 @@ if they do.
 if they do.
 .IP "\-\-cpuset=CPUSET" 4
 .IX Item "--cpuset=CPUSET"
-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:
+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:
 .Sp
 .Vb 2
 \&    0,2,3,5     : Use processors 0,2,3 and 5
diff -r eb7c2ca2f546 virtinst/ImageFetcher.py
--- a/virtinst/ImageFetcher.py	Wed Feb 27 16:27:06 2008 -0500
+++ b/virtinst/ImageFetcher.py	Fri Feb 29 14:43:19 2008 +0900
@@ -89,7 +89,7 @@ class URIImageFetcher(ImageFetcher):
                                        progress_obj = progresscb, \
                                        text = _("Retrieving file %s...") % base)
             except IOError, e:
-                raise ValueError, _("Couldn't aquire file %s: %s") %\
+                raise ValueError, _("Couldn't acquire file %s: %s") %\
                                   ((self.location + "/" + filename), str(e))
             tmpname = self.saveTemp(file, prefix=base + ".")
             logging.debug("Saved file to " + tmpname)
diff -r eb7c2ca2f546 virtinst/OSDistro.py
--- a/virtinst/OSDistro.py	Wed Feb 27 16:27:06 2008 -0500
+++ b/virtinst/OSDistro.py	Fri Feb 29 14:43:19 2008 +0900
@@ -236,7 +236,7 @@ class SuseDistro(Distro):
             filelistData.close()
 
     # We have a kernel RPM and a install-initrd RPM with a generic initrd in it
-    # Now we have to munge the two together to build an initrd capable of
+    # Now we have to merge the two together to build an initrd capable of
     # booting the installer.
     #
     # Yes, this is crazy ass stuff :-)
diff -r eb7c2ca2f546 virtinst/util.py
--- a/virtinst/util.py	Wed Feb 27 16:27:06 2008 -0500
+++ b/virtinst/util.py	Fri Feb 29 14:43:19 2008 +0900
@@ -31,7 +31,7 @@ def default_route():
     defn = 0
     for line in d.xreadlines():
         info = line.split()
-        if (len(info) != 11): # 11 = typlical num of fields in the file
+        if (len(info) != 11): # 11 = typical num of fields in the file
             print >> stderr, _("Invalid line length while parsing %s.") %(route_file)
             print >> stderr, _("Defaulting bridge to xenbr%d") % (defn)
             break
