Fix simple typo: wether -> whether (#259)
authorTim Gates <tim.gates@iress.com>
Mon, 16 Dec 2019 13:23:09 +0000 (00:23 +1100)
committerEli Bendersky <eliben@users.noreply.github.com>
Mon, 16 Dec 2019 13:23:09 +0000 (05:23 -0800)
Closes #258

scripts/readelf.py

index dfcd98d77015d0a329d034c0b88a57392205a768..a7b5ab998c773b55b53e853344087a87879ff4d9 100755 (executable)
@@ -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