summaryrefslogtreecommitdiff
path: root/docs/user-guide/06-compiling.md
diff options
context:
space:
mode:
authorNathan V. Morrical <natemorrical@gmail.com>2024-01-18 18:52:33 -0800
committerGitHub <noreply@github.com>2024-01-18 18:52:33 -0800
commit84b214389cacde9f3c94d61b3d4ca6a927cecd04 (patch)
treeec370b179e59356e410364d257fe3ca4904fa7b6 /docs/user-guide/06-compiling.md
parentc5c1a25ab6d0e509e893d737a679ac47949df2f6 (diff)
Docs for local vs global uniform parameters (#3459)
Diffstat (limited to 'docs/user-guide/06-compiling.md')
-rw-r--r--docs/user-guide/06-compiling.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/user-guide/06-compiling.md b/docs/user-guide/06-compiling.md
index 5c19175d6..4eea48223 100644
--- a/docs/user-guide/06-compiling.md
+++ b/docs/user-guide/06-compiling.md
@@ -64,7 +64,7 @@ Slang supports two models for identifying entry points when compiling.
#### Entry Point Attributes
By default, the compiler wll scan a translation unit for function declarations marked with the `[shader(...)]` attribute; each such function will be identified as an entry point in the module.
-Developers are encouraged to use this model because it makes directly documents intention and makes source code less dependent on external compiler configuration options.
+Developers are encouraged to use this model because it directly documents intention and makes source code less dependent on external compiler configuration options.
#### Explicit Entry Point Options