diff options
| author | Franklin Wei <me@fwei.tk> | 2018-11-13 21:59:14 -0500 |
|---|---|---|
| committer | Franklin Wei <me@fwei.tk> | 2018-11-13 21:59:14 -0500 |
| commit | b629359a7ad28a394ec73b1dd0b0662a6a2aef67 (patch) | |
| tree | f7a181d16618cc8e5087396503039a5dc8b8153a /main.cpp | |
| parent | b97a0da3585a601d2d4b776806305b581ba93502 (diff) | |
| download | circgraph-b629359a7ad28a394ec73b1dd0b0662a6a2aef67.zip circgraph-b629359a7ad28a394ec73b1dd0b0662a6a2aef67.tar.gz circgraph-b629359a7ad28a394ec73b1dd0b0662a6a2aef67.tar.bz2 circgraph-b629359a7ad28a394ec73b1dd0b0662a6a2aef67.tar.xz | |
Clarify help text
Diffstat (limited to '')
| -rw-r--r-- | main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -527,10 +527,10 @@ void print_usage(const char *name) cout << "Usage: " << name << " [OPTION]..." << endl; cout << "Calculate equivalent resistance/capacitance of a circuit." << endl; cout << " -C treat graph edges as capacitors (resistors by default)" << endl; - cout << " -d, --dump dump graph in DOT format and exit" << endl; - cout << " -f, --final print simplified graph in DOT format before result" << endl; + cout << " -d, --dump dump graph and exit" << endl; + cout << " -f, --final dump simplified graph before result" << endl; cout << " -i, --internal use internal format (suitable for re-entry) when dumping graphs" << endl; - cout << " -p, --progress print intermediate graphs in DOT format" << endl; + cout << " -p, --progress dump intermediate graphs" << endl; cout << " -q, --quiet don't dump graphs" << endl; cout << " -v, --verbose print lots of debug output" << endl; cout << " -h, --help print this help and exit" << endl; |