summaryrefslogtreecommitdiff
path: root/docs/user-guide/09-reflection.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/user-guide/09-reflection.md')
-rw-r--r--docs/user-guide/09-reflection.md2
1 files changed, 1 insertions, 1 deletions
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 =