Fix help message
This commit is contained in:
parent
2486bac0fe
commit
8d3ef0a9f1
1 changed files with 1 additions and 1 deletions
|
|
@ -7,7 +7,7 @@ int main(int argc, char* argv[])
|
||||||
{
|
{
|
||||||
if (argc > 5 || argc < 3)
|
if (argc > 5 || argc < 3)
|
||||||
{
|
{
|
||||||
std::cout << "Usage: " << argv[0] << "<filename> [s][gsl] [...]" << std::endl;
|
std::cout << "Usage: " << argv[0] << " <filename> [s][gsl] [...]" << std::endl;
|
||||||
std::cout << " s -- SimpleMarkov" << std::endl;
|
std::cout << " s -- SimpleMarkov" << std::endl;
|
||||||
std::cout << " sg: [<number_of_paragraphs> [<length>]] -> generate from file" << std::endl;
|
std::cout << " sg: [<number_of_paragraphs> [<length>]] -> generate from file" << std::endl;
|
||||||
std::cout << " ss: <filename> [<length>] -> save" << std::endl;
|
std::cout << " ss: <filename> [<length>] -> save" << std::endl;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue