fix: Fix various typos.

Signed-off-by: Timo Aaltonen <tjaalton@debian.org>
This commit is contained in:
Timo Aaltonen
2024-04-17 10:13:28 +03:00
committed by Compute-Runtime-Automation
parent 34544c35dc
commit cb984b3e4b
5 changed files with 10 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (C) 2019-2023 Intel Corporation
* Copyright (C) 2019-2024 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
@@ -567,7 +567,7 @@ std::string constructRelocationsDebugMessage(const Linker::RelocatedSymbolsMap &
return "";
}
std::stringstream stream;
stream << "Relocations debug informations :\n";
stream << "Relocations debug information :\n";
for (const auto &symbol : relocatedSymbols) {
stream << " * \"" << symbol.first << "\" [" << symbol.second.symbol.size << " bytes]";
stream << " " << asString(symbol.second.symbol.segment) << "_SEGMENT@" << symbol.second.symbol.offset;