seperated -> separated

This commit is contained in:
Jane Doe
2020-10-04 09:40:26 -07:00
parent 1ff4bf03c2
commit cb871509fa

View File

@@ -28,7 +28,7 @@ void GameLevel::Load(const char *file, unsigned int levelWidth, unsigned int lev
{
std::istringstream sstream(line);
std::vector<unsigned int> row;
while (sstream >> tileCode) // read each word seperated by spaces
while (sstream >> tileCode) // read each word separated by spaces
row.push_back(tileCode);
tileData.push_back(row);
}