diff options
author | Gabor Greif <ggreif@gmail.com> | 2017-09-06 14:42:02 +0200 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2017-09-07 11:55:07 +0200 |
commit | d97a6fe2b97c81a167219eae892d3820c0685435 (patch) | |
tree | 4387af534308dbaa966a80f28abc3ceeabf43219 /rts | |
parent | fee403fd935479e8a1ad563fd07585d91c7e04a2 (diff) | |
download | haskell-d97a6fe2b97c81a167219eae892d3820c0685435.tar.gz |
Fix typos in diagnostics, testsuite and comments
Diffstat (limited to 'rts')
-rw-r--r-- | rts/RtsSymbolInfo.h | 2 | ||||
-rw-r--r-- | rts/linker/Elf.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/rts/RtsSymbolInfo.h b/rts/RtsSymbolInfo.h index 08f14a54c5..4c9b24519b 100644 --- a/rts/RtsSymbolInfo.h +++ b/rts/RtsSymbolInfo.h @@ -11,7 +11,7 @@ #include "LinkerInternals.h" #include <stdbool.h> -/* See Note [BFD Import library]. */ +/* See Note [BFD import library]. */ typedef enum _SymbolKind { KIND_NORMAL = 0x01, KIND_WEAK = 0x02, diff --git a/rts/linker/Elf.c b/rts/linker/Elf.c index 4e881b0c19..58fa593341 100644 --- a/rts/linker/Elf.c +++ b/rts/linker/Elf.c @@ -439,7 +439,7 @@ ocVerifyImage_ELF ( ObjectCode* oc ) if (!SECTION_INDEX_VALID(shdr[i].sh_link)) { if (shdr[i].sh_link == SHN_UNDEF) errorBelch("\n%s: relocation section #%d has no symbol table\n" - "This object file has probably been fully striped. " + "This object file has probably been fully stripped. " "Such files cannot be linked.\n", oc->archiveMemberName ? oc->archiveMemberName : oc->fileName, i); else |