pkg: spelling tweaks, I-Z

also, a few miscellaneous fixes to files outside pkg

R=golang-dev, dsymonds, mikioh.mikioh, r
CC=golang-dev
https://golang.org/cl/4517116
This commit is contained in:
Robert Hencke 2011-05-30 18:02:59 +10:00 committed by Rob Pike
parent 9107b530d8
commit 3fbd478a8a
31 changed files with 48 additions and 48 deletions

View file

@ -2,7 +2,7 @@
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
"""GDB Pretty printers and convencience functions for Go's runtime structures.
"""GDB Pretty printers and convenience functions for Go's runtime structures.
This script is loaded by GDB when it finds a .debug_gdb_scripts
section in the compiled binary. The [68]l linkers emit this with a
@ -393,7 +393,7 @@ class GoIfaceCmd(gdb.Command):
# so Itype will start with a commontype which has kind = interface
#
# Register all convience functions and CLI commands
# Register all convenience functions and CLI commands
#
for k in vars().values():
if hasattr(k, 'invoke'):