From 67313584d6879d68db53ced3108c2370bed5e8c1 Mon Sep 17 00:00:00 2001 From: cheneym2 Date: Tue, 16 Apr 2024 22:02:45 -0400 Subject: Fix Slang documentation typos (#3961) --- docs/user-guide/09-reflection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/user-guide/09-reflection.md') diff --git a/docs/user-guide/09-reflection.md b/docs/user-guide/09-reflection.md index cef2f0b10..8572dbe08 100644 --- a/docs/user-guide/09-reflection.md +++ b/docs/user-guide/09-reflection.md @@ -42,7 +42,7 @@ for(unsigned pp = 0; pp < parameterCount; pp++) We can also enumerate the compile entry points, in order to inspect their parameters: ```c++ -SlangUInt entryPointCount = shaderRefelction->getEntryPointCount(); +SlangUInt entryPointCount = shaderReflection->getEntryPointCount(); for(SlangUInt ee = 0; ee < entryPointCount; ee++) { slang::EntryPointReflection* entryPoint = -- cgit v1.2.3