spelling & readme

This commit is contained in:
Mans Ziesel 2024-04-28 13:58:11 +02:00
parent 1d19ad496f
commit 2a033ecb81
2 changed files with 9 additions and 1 deletions

View File

@ -1,2 +1,10 @@
# passgen # passgen
Usage:
```
passgen <wordlist_path> <word_count>
```
example output:
```
retrace-choice-litter-dreamt-zipping
```

View File

@ -18,7 +18,7 @@ std::vector<std::string> readWordlist(std::string filePath)
map.push_back(line); map.push_back(line);
} }
} else { } else {
std::cout << std::format("ERROR: failed op open '{}'\n", filePath); std::cout << std::format("ERROR: failed to open '{}'\n", filePath);
} }
return map; return map;