Skip to content

Commit

Permalink
mixed n and i
Browse files Browse the repository at this point in the history
  • Loading branch information
jkrech authored Aug 5, 2024
1 parent 5e53360 commit 2f37997
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libs/rtemodel/src/RteTarget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1806,10 +1806,10 @@ std::string RteTarget::GenerateRegionsHeaderContent() const
oss << RteUtils::LF_STRING;

oss << "// Auto-generated file: USE CONFIGURATION WIZARD TO CHANGE VALUES!" << RteUtils::LF_STRING;
oss << "// <i> Generated using information from packs" << RteUtils::LF_STRING;
oss << "// <n> Device Family Pack (DFP): " << device->GetPackageID(true) << RteUtils::LF_STRING;
oss << "// <n> Generated using information from packs" << RteUtils::LF_STRING;
oss << "// <i> Device Family Pack (DFP): " << device->GetPackageID(true) << RteUtils::LF_STRING;
if (board) {
oss << "// <n> Board Support Pack (BSP): " << board->GetPackageID(true) << RteUtils::LF_STRING;
oss << "// <i> Board Support Pack (BSP): " << board->GetPackageID(true) << RteUtils::LF_STRING;
}
oss << RteUtils::LF_STRING;

Expand Down

0 comments on commit 2f37997

Please sign in to comment.