Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Ambrogino Modigliani <ambrogino.modigliani@gmail.com>
To: gdb-patches@sourceware.org,	pedro_alves@portugalmail.pt
Subject: [PATCH 04/20] Fix spelling mistakes in comments in shell scripts
Date: Sun, 20 Nov 2016 15:07:00 -0000	[thread overview]
Message-ID: <1479654381-20698-5-git-send-email-ambrogino.modigliani@mail.com> (raw)
In-Reply-To: <1479654381-20698-1-git-send-email-ambrogino.modigliani@mail.com>

gdb/ChangeLog:

        * gdb/contrib/expect-read1.sh: Fix spelling in comments.
        * gdb/gdb_buildall.sh: Fix spelling in comments.
        * gdb/gdb_mbuildw.sh: Fix spelling in comments.

gdb/testsuite/ChangeLog:

        * gdb/testsuite/dg-extract-results.sh: Fix spelling in comments.

ld/ChangeLog:

        * ld/emulparams/elf32mcore.sh: Fix spelling in comments.
---
 gdb/contrib/expect-read1.sh         | 2 +-
 gdb/gdb_buildall.sh                 | 2 +-
 gdb/gdb_mbuild.sh                   | 4 ++--
 gdb/testsuite/dg-extract-results.sh | 2 +-
 ld/emulparams/elf32mcore.sh         | 4 ++--
 5 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/gdb/contrib/expect-read1.sh b/gdb/contrib/expect-read1.sh
index cc9d811..a0251d2 100644
--- a/gdb/contrib/expect-read1.sh
+++ b/gdb/contrib/expect-read1.sh
@@ -15,7 +15,7 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-# This tool excercise any incomplete reads handling in the testsuite by
+# This tool exercise any incomplete reads handling in the testsuite by
 # simulating read always returns just 1 character.
 # Testsuite incompatibilities are tracked as GDB PR testsuite/12649.
 
diff --git a/gdb/gdb_buildall.sh b/gdb/gdb_buildall.sh
index 1fc7b38..ed3ffb5 100644
--- a/gdb/gdb_buildall.sh
+++ b/gdb/gdb_buildall.sh
@@ -103,7 +103,7 @@ builddir=`cd $2 && /bin/pwd` || exit 1
 make=${MAKE:-make}
 MAKE=${make}
 export MAKE
-# We dont want GDB do dump cores.
+# We don't want GDB do dump cores.
 ulimit -c 0
 
 # Just make sure we're in the right directory.
diff --git a/gdb/gdb_mbuild.sh b/gdb/gdb_mbuild.sh
index 08927f1..da0c19a 100755
--- a/gdb/gdb_mbuild.sh
+++ b/gdb/gdb_mbuild.sh
@@ -195,7 +195,7 @@ log ()
 
 
 
-# Warn the user of what is comming, print the list of targets
+# Warn the user of what is coming, print the list of targets
 
 echo "$alltarg"
 echo ""
@@ -273,7 +273,7 @@ do
     then
 	# Iff the build fails remove the final build target so that
 	# the follow-on code knows things failed.  Stops the follow-on
-	# code thinking that a failed rebuild succedded (executable
+	# code thinking that a failed rebuild succeeded (executable
 	# left around from previous build).
 	echo ... ${make} ${keepgoing} ${makejobs} ${target}
 	( ${make} ${keepgoing} ${makejobs} all-gdb || rm -f gdb/gdb gdb/gdb.exe
diff --git a/gdb/testsuite/dg-extract-results.sh b/gdb/testsuite/dg-extract-results.sh
index ffea0a3..18734b4 100755
--- a/gdb/testsuite/dg-extract-results.sh
+++ b/gdb/testsuite/dg-extract-results.sh
@@ -267,7 +267,7 @@ cat $SUM_FILES \
   | $AWK '/^Running/ { if ($2 != "target" && $3 == "...") print "EXPFILE: "$2 } ' \
   | sort -u > ${TMP}/expfiles
 
-# Write the begining of the combined summary file.
+# Write the beginning of the combined summary file.
 
 head -n 2 $FIRST_SUM
 echo
diff --git a/ld/emulparams/elf32mcore.sh b/ld/emulparams/elf32mcore.sh
index 512a9b0..e7d0134 100644
--- a/ld/emulparams/elf32mcore.sh
+++ b/ld/emulparams/elf32mcore.sh
@@ -13,11 +13,11 @@ EMBEDDED=yes
 # There is a problem with the NOP value - it must work for both
 # big endian and little endian systems.  Unfortunately there is
 # no symmetrical mcore opcode that functions as a noop.  The
-# chosen solution is to use "tst r0, r14".  This is a symetrical
+# chosen solution is to use "tst r0, r14".  This is a symmetrical
 # value, and apart from the corruption of the C bit, it has no other
 # side effects.  Since the carry bit is never tested without being
 # explicitly set first, and since the NOP code is only used as a
-# fill value between independantly viable peices of code, it should
+# fill value between independently viable peices of code, it should
 # not matter.
 NOP=0x0e0e0e0e
 
-- 
2.7.4


  parent reply	other threads:[~2016-11-20 15:07 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-20 15:06 [PATCH 00/20] Fix spelling mistakes in comments Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 17/20] Fix spelling mistakes in comments in .opc files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 10/20] Fix spelling mistakes in comments in .def files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 19/20] Fix spelling mistakes in comments in .tbl files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 08/20] Fix spelling mistakes in comments in XML files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 14/20] Fix spelling mistakes in comments in .inc files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 11/20] Fix spelling mistakes in comments in .em files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 20/20] Fix spelling mistakes in comments in .y files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 02/20] Fix spelling mistakes in comments in configure scripts Ambrogino Modigliani
2016-11-20 16:36   ` Simon Marchi
2016-11-20 15:07 ` [PATCH 16/20] Fix spelling mistakes in comments in .m4 files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 12/20] Fix spelling mistakes in comments in .igen files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 18/20] Fix spelling mistakes in comments in .sc files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 07/20] Fix spelling mistakes in comments in Expect scripts Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 13/20] Fix spelling mistakes in comments in .in files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 09/20] Fix spelling mistakes in comments in .cpu files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 06/20] Fix spelling mistakes in comments in Assembler files Ambrogino Modigliani
2016-11-20 16:59   ` Simon Marchi
2016-11-20 15:07 ` [PATCH 03/20] Fix spelling mistakes in comments in makefiles Ambrogino Modigliani
2016-11-20 16:53   ` Simon Marchi
2016-11-20 15:07 ` [PATCH 15/20] Fix spelling mistakes in comments in .l files Ambrogino Modigliani
2016-11-20 15:07 ` [PATCH 05/20] Fix spelling mistakes in comments in Ada source files Ambrogino Modigliani
2016-11-20 15:07 ` Ambrogino Modigliani [this message]
2016-11-20 17:30 ` [PATCH 00/20] Fix spelling mistakes in comments Simon Marchi

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=1479654381-20698-5-git-send-email-ambrogino.modigliani@mail.com \
    --to=ambrogino.modigliani@gmail.com \
    --cc=gdb-patches@sourceware.org \
    --cc=pedro_alves@portugalmail.pt \
    /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