Skip to content

Commit

Permalink
Readme correction and -help error in generator (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
KunalKatiyar authored Mar 4, 2020
1 parent 590ac50 commit c0b1b4f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ which returns 17 numbers:

To use CoolingGaussian (CG) algorithm run the following command:
```
./vol -f1 cube_10.ine -CG
./vol -f1 cube_10.ine -cg
```
which returns the same output as before.

Expand Down
2 changes: 1 addition & 1 deletion test/generator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ int main(const int argc, const char** argv) {

if (correct == false) {
std::cerr << "unknown parameters \'" << argv[i] <<
"\', try " << argv[0] << " --help" << std::endl;
"\', try " << argv[0] << " -help" << std::endl;
exit(-2);
}

Expand Down

0 comments on commit c0b1b4f

Please sign in to comment.