qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Stefan Hajnoczi <stefanha@redhat.com>
To: qemu-devel@nongnu.org
Cc: Stefan Weil <sw@weilnetz.de>,
	Anthony Liguori <aliguori@us.ibm.com>,
	Stefan Hajnoczi <stefanha@redhat.com>
Subject: [Qemu-devel] [PATCH 04/13] Fix comments (adress -> address, layed -> laid, wierd -> weird)
Date: Fri,  7 Dec 2012 12:39:03 +0100	[thread overview]
Message-ID: <1354880352-9597-5-git-send-email-stefanha@redhat.com> (raw)
In-Reply-To: <1354880352-9597-1-git-send-email-stefanha@redhat.com>

From: Stefan Weil <sw@weilnetz.de>

Remove also a duplicated 'the'.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
 slirp/ip_icmp.c | 2 +-
 tcg/tcg.h       | 4 ++--
 uri.c           | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/slirp/ip_icmp.c b/slirp/ip_icmp.c
index d571fd0..9f1cb08 100644
--- a/slirp/ip_icmp.c
+++ b/slirp/ip_icmp.c
@@ -352,7 +352,7 @@ icmp_error(struct mbuf *msrc, u_char type, u_char code, int minsize,
 
   ip->ip_ttl = MAXTTL;
   ip->ip_p = IPPROTO_ICMP;
-  ip->ip_dst = ip->ip_src;    /* ip adresses */
+  ip->ip_dst = ip->ip_src;    /* ip addresses */
   ip->ip_src = m->slirp->vhost_addr;
 
   (void ) ip_output((struct socket *)NULL, m);
diff --git a/tcg/tcg.h b/tcg/tcg.h
index 9481e35..e7de8c0 100644
--- a/tcg/tcg.h
+++ b/tcg/tcg.h
@@ -290,8 +290,8 @@ typedef int TCGv_i64;
 #define TCG_CALL_DUMMY_TCGV     MAKE_TCGV_I32(-1)
 #define TCG_CALL_DUMMY_ARG      ((TCGArg)(-1))
 
-/* Conditions.  Note that these are layed out for easy manipulation by
-   the the functions below:
+/* Conditions.  Note that these are laid out for easy manipulation by
+   the functions below:
      bit 0 is used for inverting;
      bit 1 is signed,
      bit 2 is unsigned,
diff --git a/uri.c b/uri.c
index dd922de..138547b 100644
--- a/uri.c
+++ b/uri.c
@@ -432,7 +432,7 @@ rfc3986_parse_host(URI *uri, const char **str)
 
     host = cur;
     /*
-     * IPv6 and future adressing scheme are enclosed between brackets
+     * IPv6 and future addressing scheme are enclosed between brackets
      */
     if (*cur == '[') {
         cur++;
@@ -1917,7 +1917,7 @@ done:
  *     http://site1.com/docs/pic1.gif   http://site1.com/docs/pic1.gif
  *
  *
- * Note: if the URI reference is really wierd or complicated, it may be
+ * Note: if the URI reference is really weird or complicated, it may be
  *       worthwhile to first convert it into a "nice" one by calling
  *       uri_resolve (using 'base') before calling this routine,
  *       since this routine (for reasonable efficiency) assumes URI has
-- 
1.8.0.1

  parent reply	other threads:[~2012-12-07 11:54 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-07 11:38 [Qemu-devel] [PULL 00/13] Trivial patches for 2 to 7 November Stefan Hajnoczi
2012-12-07 11:39 ` [Qemu-devel] [PATCH 01/13] sd: Send debug printfery to stderr not stdout Stefan Hajnoczi
2012-12-07 11:39 ` [Qemu-devel] [PATCH 02/13] configure: Remove stray debug output Stefan Hajnoczi
2012-12-07 11:39 ` [Qemu-devel] [PATCH 03/13] Fix spelling (prefered -> preferred) Stefan Hajnoczi
2012-12-07 11:39 ` Stefan Hajnoczi [this message]
2012-12-07 11:39 ` [Qemu-devel] [PATCH 05/13] s390x: Spelling fixes (endianess -> endianness, occured -> occurred) Stefan Hajnoczi
2012-12-07 11:39 ` [Qemu-devel] [PATCH 06/13] target-alpha: Remove t0, t1 from CPUAlphaState Stefan Hajnoczi
2012-12-07 11:39 ` [Qemu-devel] [PATCH 07/13] target-m68k: Remove t1 from CPUM68KState Stefan Hajnoczi
2012-12-07 11:39 ` [Qemu-devel] [PATCH 08/13] target-sparc: Remove t0, t1 from CPUSPARCState Stefan Hajnoczi
2012-12-07 11:39 ` [Qemu-devel] [PATCH 09/13] arm: a9mpcore: remove un-used ptimer_iomem field Stefan Hajnoczi
2012-12-07 11:39 ` [Qemu-devel] [PATCH 10/13] Clean up pci_drive_hot_add()'s use of BlockInterfaceType Stefan Hajnoczi
2012-12-07 11:39 ` [Qemu-devel] [PATCH 11/13] Fix spelling in comments and documentation Stefan Hajnoczi
2012-12-07 11:39 ` [Qemu-devel] [PATCH 12/13] qemu-options: Fix space at EOL Stefan Hajnoczi
2012-12-07 11:39 ` [Qemu-devel] [PATCH 13/13] pc_sysfw: Plug memory leak on pc_fw_add_pflash_drv() error path Stefan Hajnoczi
2012-12-10 16:58 ` [Qemu-devel] [PULL 00/13] Trivial patches for 2 to 7 November Anthony Liguori

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1354880352-9597-5-git-send-email-stefanha@redhat.com \
    --to=stefanha@redhat.com \
    --cc=aliguori@us.ibm.com \
    --cc=qemu-devel@nongnu.org \
    --cc=sw@weilnetz.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).