Fixed typos

This commit is contained in:
2021-06-06 12:19:10 -04:00
parent 8e36887d49
commit 240b7b6271
2 changed files with 3 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ private:
std::vector<int> primes; //The primes below MAX_NUM
std::vector<int> circularPrimes; //The circular primes below MAX_NUM
//Functions
std::vector<std::string> getRotations(std::string str); //This function returns a list of all rotations of a string passed to it
std::vector<std::string> getRotations(std::string str); //Returns a list of all rotations of a string passed to it
public:
//Constructor
Problem35();