Fix typo in comment

This commit is contained in:
Graham Wihlidal 2017-01-05 21:00:05 +01:00
parent a4818f4391
commit acd98ac0d5

View File

@ -794,7 +794,7 @@ void Compiler::set_name(uint32_t id, const std::string &name)
return;
// Functions in glslangValidator are mangled with name(<mangled> stuff.
// Normally, we would never see '(' in any legal indentifiers, so just strip them out.
// Normally, we would never see '(' in any legal identifiers, so just strip them out.
str = name.substr(0, name.find('('));
for (uint32_t i = 0; i < str.size(); i++)