From 91a97b4c69c765e3c59ddd0fa775bd27f40c8d79 Mon Sep 17 00:00:00 2001 From: Sven van Haastregt Date: Tue, 25 Jul 2023 11:44:12 +0100 Subject: [PATCH] Fix typo in error message --- glslang/MachineIndependent/SpirvIntrinsics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glslang/MachineIndependent/SpirvIntrinsics.cpp b/glslang/MachineIndependent/SpirvIntrinsics.cpp index 48c6a5ba..5d495dbf 100644 --- a/glslang/MachineIndependent/SpirvIntrinsics.cpp +++ b/glslang/MachineIndependent/SpirvIntrinsics.cpp @@ -76,7 +76,7 @@ TSpirvRequirement* TParseContext::makeSpirvRequirement(const TSourceLoc& loc, co spirvReq->capabilities.insert(capability->getAsConstantUnion()->getConstArray()[0].getIConst()); } } else - error(loc, "unknow SPIR-V requirement", name.c_str(), ""); + error(loc, "unknown SPIR-V requirement", name.c_str(), ""); return spirvReq; }