Cleanup example program in Flag docs.

This commit is contained in:
Kyle Isom 2023-10-16 17:54:35 -07:00
parent a0cd2ca866
commit b7584b06cc
1 changed files with 19 additions and 17 deletions

2
Flag.h
View File

@ -92,6 +92,7 @@ Flag *NewFlag(std::string fName, FlagType fType, std::string fDescription);
/// ///
/// A short example program is below: /// A short example program is below:
/// ///
/// ```c++
/// int /// int
/// main(int argc, char *argv[]) /// main(int argc, char *argv[])
/// { /// {
@ -127,6 +128,7 @@ Flag *NewFlag(std::string fName, FlagType fType, std::string fDescription);
/// } /// }
/// return 0; /// return 0;
/// } /// }
/// ```
/// ///
class Flags { class Flags {
public: public: