Updated some documentation

This commit is contained in:
2019-03-07 12:38:10 -05:00
parent 22bcb3eafd
commit 80ebb77040

View File

@@ -45,7 +45,7 @@ void Autokey::encodeSet(std::string key, std::string input){
input = getInputString();
key.append(input);
///This will take a long time if the keyword in long
//This will take a long time if the keyword in long
//Remove the last letter in the string until it is the same size as the input
while(key.size() > input.size()){
key.erase(key.end() - 1);