Cleanup example program in Flag docs.

This commit is contained in:
2023-10-16 17:54:35 -07:00
parent a0cd2ca866
commit b7584b06cc

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:
///
/// ```c++
/// int
/// main(int argc, char *argv[])
/// {
@@ -127,6 +128,7 @@ Flag *NewFlag(std::string fName, FlagType fType, std::string fDescription);
/// }
/// return 0;
/// }
/// ```
///
class Flags {
public: