Update language to comply with Android's inclusive language guidance

See https://source.android.com/setup/contribute/respectful-code for
reference

Bug: 161896447
Test: TH
Change-Id: I2a93e520120fa52a190a445b4d4c417c299b9727
This commit is contained in:
Yo Chiang 2020-07-29 01:20:01 +08:00
parent c8343a3f0e
commit 1237c1f577
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ class ELFParser(object):
@classmethod
def open(cls, elf_file_path, llvm_readobj):
"""Open and parse the ELF file."""
# Parse the ELF header for simple sanity checks.
# Parse the ELF header to check the magic word.
header = cls._read_elf_header(elf_file_path)
if not header or header.ei_magic != _ELF_MAGIC:
raise ELFInvalidMagicError()