doc: fix doxy warnings on introspected-command-line.h

This commit is contained in:
Peter D. Barnes, Jr
2020-05-20 13:08:27 -07:00
parent c43242d599
commit a0ab57db12
4 changed files with 7 additions and 7 deletions

View File

@@ -55,7 +55,7 @@ int main (int argc, char *argv[])
cmd.AddValue ("queueDiscType", "Set Queue disc type to RED or FengAdaptive", queueDiscType);
cmd.AddValue ("appPktSize", "Set OnOff App Packet Size", pktSize);
cmd.AddValue ("appDataRate", "Set OnOff App DataRate", appDataRate);
cmd.AddValue ("modeBytes", "Set Queue disc mode to Packets <false> or bytes <true>", modeBytes);
cmd.AddValue ("modeBytes", "Set Queue disc mode to Packets (false) or bytes (true)", modeBytes);
cmd.AddValue ("redMinTh", "RED queue minimum threshold", minTh);
cmd.AddValue ("redMaxTh", "RED queue maximum threshold", maxTh);

View File

@@ -57,7 +57,7 @@ int main (int argc, char *argv[])
cmd.AddValue ("queueDiscType", "Set Queue disc type to RED or NLRED", queueDiscType);
cmd.AddValue ("appPktSize", "Set OnOff App Packet Size", pktSize);
cmd.AddValue ("appDataRate", "Set OnOff App DataRate", appDataRate);
cmd.AddValue ("modeBytes", "Set Queue disc mode to Packets <false> or bytes <true>", modeBytes);
cmd.AddValue ("modeBytes", "Set Queue disc mode to Packets (false) or bytes (true)", modeBytes);
cmd.AddValue ("redMinTh", "RED queue minimum threshold", minTh);
cmd.AddValue ("redMaxTh", "RED queue maximum threshold", maxTh);

View File

@@ -381,14 +381,14 @@ CommandLine::PrintDoxygenUsage (void) const
<< "<dl>\n";
for (auto i : m_options)
{
os << " <dt>\\c --" << i->m_name << "</dt>\n"
os << " <dt>\\c --" << i->m_name << " </dt>\n"
<< " <dd>" << i->m_help;
if ( i->HasDefault ())
{
os << " [" << i->GetDefault () << "]";
}
os << "</dd>\n";
os << " </dd>\n";
}
os << "</dl>\n";
}
@@ -400,14 +400,14 @@ CommandLine::PrintDoxygenUsage (void) const
<< "<dl>\n";
for (auto i : nonOptions)
{
os << " <dt> \\c " << i->m_name << "</dt>\n"
os << " <dt> \\c " << i->m_name << " </dt>\n"
<< " <dd>" << i->m_help;
if ( i->HasDefault ())
{
os << " [" << i->GetDefault () << "]";
}
os << "</dd>\n";
os << " </dd>\n";
}
os << "</dl>\n";
}

View File

@@ -55,7 +55,7 @@ int main (int argc, char *argv[])
cmd.AddValue ("queueDiscType", "Set Queue disc type to RED or ARED", queueDiscType);
cmd.AddValue ("appPktSize", "Set OnOff App Packet Size", pktSize);
cmd.AddValue ("appDataRate", "Set OnOff App DataRate", appDataRate);
cmd.AddValue ("modeBytes", "Set Queue disc mode to Packets <false> or bytes <true>", modeBytes);
cmd.AddValue ("modeBytes", "Set Queue disc mode to Packets (false) or bytes (true)", modeBytes);
cmd.AddValue ("redMinTh", "RED queue minimum threshold", minTh);
cmd.AddValue ("redMaxTh", "RED queue maximum threshold", maxTh);