From: Tim Gates Date: Mon, 16 Dec 2019 13:23:09 +0000 (+1100) Subject: Fix simple typo: wether -> whether (#259) X-Git-Tag: v0.27~72 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a347dbfab622ab98d9747d862ade9e6b6fd9425c;p=pyelftools.git Fix simple typo: wether -> whether (#259) Closes #258 --- diff --git a/scripts/readelf.py b/scripts/readelf.py index dfcd98d..a7b5ab9 100755 --- a/scripts/readelf.py +++ b/scripts/readelf.py @@ -875,7 +875,7 @@ class ReadElf(object): if self._versioninfo['type'] == 'GNU': # In GNU versioning mode, the highest bit is used to - # store wether the symbol is hidden or not + # store whether the symbol is hidden or not if index & 0x8000: index &= ~0x8000 symbol_version['hidden'] = True