public inbox for elfutils@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 00/12] Fix spelling typos in comments, tests, and text files
@ 2020-12-12 16:49 Dmitry V. Levin
  2020-12-12 16:50 ` [PATCH 01/12] debuginfod: fix spelling typos in error diagnostics and comments Dmitry V. Levin
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: Dmitry V. Levin @ 2020-12-12 16:49 UTC (permalink / raw)
  To: elfutils-devel

This is the least significant part of all spelling fixes, most users
won't notice any difference at all, but it still makes sense to use
correct spelling.

Dmitry V. Levin (12):
  debuginfod: fix spelling typos in error diagnostics and comments
  backends: fix spelling typos in comments
  config: fix spelling typos in comments and %changelog
  libasm: fix spelling typos in comments
  libcpu: fix spelling typos in comments
  libdw: fix spelling typos in comments and ChangeLog
  libdwelf: fix spelling typos in comments
  libdwfl: fix spelling typos in comments and ChangeLog
  libelf: fix spelling typos in comments
  src: fix spelling typos in comments and ChangeLog
  tests: fix spelling typos in error diagnostics and comments
  Fix spelling typos in NEWS, NOTES, TODO, and in comments of
    configure.ac

 ChangeLog                         |  7 +++++++
 NEWS                              | 18 +++++++++---------
 NOTES                             |  4 ++--
 TODO                              |  2 +-
 backends/ChangeLog                |  6 ++++++
 backends/aarch64_retval.c         |  2 +-
 backends/ppc_cfi.c                |  2 +-
 config/10-default-yama-scope.conf |  2 +-
 config/ChangeLog                  |  6 ++++++
 config/elfutils.spec.in           | 12 ++++++------
 config/upload-release.sh          |  2 +-
 configure.ac                      |  6 +++---
 debuginfod/ChangeLog              |  7 +++++++
 debuginfod/debuginfod-client.c    |  4 ++--
 debuginfod/debuginfod.cxx         |  6 +++---
 libasm/ChangeLog                  |  5 +++++
 libasm/asm_begin.c                |  2 +-
 libasm/asm_end.c                  |  2 +-
 libcpu/ChangeLog                  |  5 +++++
 libcpu/bpf_disasm.c               |  2 +-
 libcpu/i386_disasm.c              |  2 +-
 libdw/ChangeLog                   | 11 ++++++++++-
 libdw/dwarf.h                     |  2 +-
 libdw/dwarf_begin_elf.c           |  2 +-
 libdw/dwarf_getlocation.c         |  4 ++--
 libdw/dwarf_getsrclines.c         |  2 +-
 libdw/libdw.h                     | 10 +++++-----
 libdw/libdwP.h                    |  4 ++--
 libdwelf/ChangeLog                |  3 +++
 libdwelf/dwelf_strtab.c           |  2 +-
 libdwelf/libdwelf.h               |  4 ++--
 libdwfl/ChangeLog                 | 13 ++++++++++---
 libdwfl/dwfl_module_getdwarf.c    |  4 ++--
 libdwfl/dwfl_report_elf.c         |  2 +-
 libdwfl/libdwfl.h                 |  8 ++++----
 libdwfl/linux-pid-attach.c        |  2 +-
 libebl/ChangeLog                  |  2 +-
 libelf/ChangeLog                  | 11 +++++++++++
 libelf/common.h                   |  2 +-
 libelf/elf32_checksum.c           |  2 +-
 libelf/elf_begin.c                |  4 ++--
 libelf/elf_compress.c             |  2 +-
 libelf/elf_compress_gnu.c         |  2 +-
 libelf/gelf.h                     |  2 +-
 libelf/libelf.h                   |  2 +-
 libelf/libelfP.h                  |  2 +-
 src/ChangeLog                     | 14 ++++++++++++--
 src/ar.c                          |  4 ++--
 src/elfclassify.c                 |  6 +++---
 src/elfcompress.c                 |  2 +-
 src/elflint.c                     |  6 +++---
 src/readelf.c                     |  6 +++---
 src/size.c                        |  2 +-
 src/strings.c                     |  2 +-
 src/strip.c                       |  2 +-
 tests/ChangeLog                   | 11 +++++++++++
 tests/dwarf-die-addr-die.c        |  2 +-
 tests/dwfl-bug-fd-leak.c          |  2 +-
 tests/elfstrmerge.c               |  4 ++--
 tests/run-lfs-symbols.sh          |  2 +-
 tests/run-readelf-line.sh         |  2 +-
 tests/run-stack-demangled-test.sh |  2 +-
 tests/sectiondump.c               |  6 +++---
 tests/varlocs.c                   |  2 +-
 64 files changed, 186 insertions(+), 99 deletions(-)


-- 
ldv

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2020-12-12 17:17 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-12 16:49 [PATCH 00/12] Fix spelling typos in comments, tests, and text files Dmitry V. Levin
2020-12-12 16:50 ` [PATCH 01/12] debuginfod: fix spelling typos in error diagnostics and comments Dmitry V. Levin
2020-12-12 16:50 ` [PATCH 02/12] backends: fix spelling typos in comments Dmitry V. Levin
2020-12-12 16:50 ` [PATCH 03/12] config: fix spelling typos in comments and %changelog Dmitry V. Levin
2020-12-12 16:50 ` [PATCH 04/12] libasm: fix spelling typos in comments Dmitry V. Levin
2020-12-12 16:50 ` [PATCH 05/12] libcpu: " Dmitry V. Levin
2020-12-12 16:51 ` [PATCH 06/12] libdw: fix spelling typos in comments and ChangeLog Dmitry V. Levin
2020-12-12 16:51 ` [PATCH 07/12] libdwelf: fix spelling typos in comments Dmitry V. Levin
2020-12-12 16:51 ` [PATCH 08/12] libdwfl: fix spelling typos in comments and ChangeLog Dmitry V. Levin
2020-12-12 16:52 ` [PATCH 09/12] libelf: fix spelling typos in comments Dmitry V. Levin
2020-12-12 16:52 ` [PATCH 10/12] src: fix spelling typos in comments and ChangeLog Dmitry V. Levin
2020-12-12 16:52 ` [PATCH 11/12] tests: fix spelling typos in error diagnostics and comments Dmitry V. Levin
2020-12-12 16:52 ` [PATCH 12/12] Fix spelling typos in NEWS, NOTES, TODO, and in comments of configure.ac Dmitry V. Levin
2020-12-12 17:17 ` [PATCH 00/12] Fix spelling typos in comments, tests, and text files Mark Wielaard

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 read-only IMAP folder(s) and NNTP newsgroup(s).