aboutsummaryrefslogtreecommitdiffstats
path: root/docs/misc
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-04-03 11:34:21 +0100
committerKeir Fraser <keir.fraser@citrix.com>2008-04-03 11:34:21 +0100
commit48f0d952faad9bf386c454bf32f6b98cf658f15b (patch)
treeca0300a6f87bf5516b1c7d1266fa63e0baa30134 /docs/misc
parent4586f27b6c68500feb702015793a240ea92120d7 (diff)
downloadxen-48f0d952faad9bf386c454bf32f6b98cf658f15b.tar.gz
xen-48f0d952faad9bf386c454bf32f6b98cf658f15b.tar.bz2
xen-48f0d952faad9bf386c454bf32f6b98cf658f15b.zip
docs: Fix typos.
Signed-off-by: Atsushi SAKAI <sakaia@jp.fujitsu.com>
Diffstat (limited to 'docs/misc')
-rw-r--r--docs/misc/VMX_changes.txt2
-rw-r--r--docs/misc/hg-cheatsheet.txt14
-rw-r--r--docs/misc/vtpm.txt2
-rw-r--r--docs/misc/xenstore.txt4
4 files changed, 11 insertions, 11 deletions
diff --git a/docs/misc/VMX_changes.txt b/docs/misc/VMX_changes.txt
index 739d315e79..276af66e25 100644
--- a/docs/misc/VMX_changes.txt
+++ b/docs/misc/VMX_changes.txt
@@ -79,7 +79,7 @@ Changes to the existing code:
* include/asm-x86/processor.h: struct arch_vmx_struct arch_vmx has
been added to the thread_struct data structure. The arch_vmx has
- the addtional VMX-related CPU context.
+ the additional VMX-related CPU context.
* arch/x86/io_apic.c: reverse mapping between vector and irq has
been added. We will revisit this code when considering MSI
diff --git a/docs/misc/hg-cheatsheet.txt b/docs/misc/hg-cheatsheet.txt
index 1feb4ec6d9..fa13eefbf9 100644
--- a/docs/misc/hg-cheatsheet.txt
+++ b/docs/misc/hg-cheatsheet.txt
@@ -12,7 +12,7 @@ control. This note aims to provide a quick guide to getting up and
running with the new tools as quickly as possible, and is written from
the perspective of someone who has been using BK.
-For a more detailed exposition, see the mecurial tutorial:
+For a more detailed exposition, see the mercurial tutorial:
http://www.serpentine.com/mercurial/index.cgi?Tutorial
The Hg manpage is available at:
@@ -69,7 +69,7 @@ descendent in one repository -- something BK won't allow. This is
actually pretty neat. For example, it would in principle enable you to
have both the 2.0-testing and unstable trees in a single
repository. We shyed away from doing this as we thought the risk of
-commiting to the wrong head was too great.
+committing to the wrong head was too great.
One slightly confusing aspect of Hg is that many of the commands have
aliases, and hence when looking things up in the man page its not
@@ -81,7 +81,7 @@ more sense, at least to RCS refugees like me.
Getting Xen
-----------
-The URL for the mainline Xen mercurial respository is:
+The URL for the mainline Xen mercurial repository is:
http://xenbits.xensource.com/xen-unstable.hg
(similarly for xen-2.0 and xen-2.0-testing)
@@ -273,9 +273,9 @@ Pushing changesets to a parent repository
Pushes changes up to a parent. You can't push if you pulled the
repository off the web interface. In fact, you can currently only push
-to an ssh target -- filesystem drectory targets don't work, but this
+to an ssh target -- filesystem directory targets don't work, but this
will be fixed soon.
-For now it is possible to set up assymetric pull/push paths. Pulls can
+For now it is possible to set up asymmetric pull/push paths. Pulls can
be done via web interface while pushes via ssh. Example of .hg/hgrc config
file:
| [paths]
@@ -332,7 +332,7 @@ by other checked-out versions. This can confuse the Xen build
system. Hg will probably get fixed soon, but in the meantime you can
cleanup with "find -depth -type d -print | xargs -r rmdir".
-You can return to the tip by ommiting an explicit changeset id.
+You can return to the tip by omitting an explicit changeset id.
The manifest command lets you see the contents of the repository for
the current changeset.
@@ -347,7 +347,7 @@ This will print a bunch of records of the form:
| 7fc869aae2945a9f4626fad96552db3103e61cb9 644 README
| ...
-This lists the hash of each file, its 1-bit 'executable' atribute
+This lists the hash of each file, its 1-bit 'executable' attribute
(either file permission mode 644 or 755), and the file name. So, to
determine the files that change across two changesets, you would dump
the respective manifests to files, and use diff.
diff --git a/docs/misc/vtpm.txt b/docs/misc/vtpm.txt
index e38ccb236a..62479ff85d 100644
--- a/docs/misc/vtpm.txt
+++ b/docs/misc/vtpm.txt
@@ -143,7 +143,7 @@ PCR-07: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
PCR-08: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[...]
-At this point the user domain has been sucessfully connected to its
+At this point the user domain has been successfully connected to its
virtual TPM instance.
For further information please read the documentation in
diff --git a/docs/misc/xenstore.txt b/docs/misc/xenstore.txt
index baf2c42dc0..f46cf4f525 100644
--- a/docs/misc/xenstore.txt
+++ b/docs/misc/xenstore.txt
@@ -129,7 +129,7 @@ The following are the actual type values, including the request and
reply payloads as applicable:
----------- Database read, write and permissions operatons ----------
+---------- Database read, write and permissions operations ----------
READ <path>| <value|>
WRITE <path>|<value|>
@@ -206,7 +206,7 @@ WATCH_EVENT <epath>|<token>|
as described above. req_id and tx_id are both 0.
<epath> is the event's path, ie the actual path that was
- modifed; however if the event was the recursive removal of an
+ modified; however if the event was the recursive removal of an
parent of <wpath>, <epath> is just
<wpath> (rather than the actual path which was removed). So
<epath> is a child of <wpath>, regardless.