From 80ebb770405f8732919205981d4baa7d4de45b1d Mon Sep 17 00:00:00 2001 From: Matthew Ellison Date: Thu, 7 Mar 2019 12:38:10 -0500 Subject: [PATCH] Updated some documentation --- SourceFiles/Autokey.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SourceFiles/Autokey.cpp b/SourceFiles/Autokey.cpp index c61cbf3..0bb4798 100644 --- a/SourceFiles/Autokey.cpp +++ b/SourceFiles/Autokey.cpp @@ -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);