Fix typos

This commit is contained in:
Martchus 2023-06-18 22:50:28 +02:00
parent e5fed90c10
commit c377a9d6ca
1 changed files with 2 additions and 2 deletions

View File

@ -187,7 +187,7 @@ void Binary::load(std::string_view filePath)
parse(file);
switch (type) {
case BinaryType::Pe:
// use name of library file as there's no soname filed in PEs
// use name of library file as there's no soname field in PEs
name = fileName(filePath);
break;
case BinaryType::Elf:
@ -212,7 +212,7 @@ void Binary::load(std::string_view fileContent, std::string_view fileName, std::
parse(fileStream, &fileContent);
switch (type) {
case BinaryType::Pe:
// use name of library file as there's no soname filed in PEs
// use name of library file as there's no soname field in PEs
name = fileName;
break;
case BinaryType::Elf: