summaryrefslogtreecommitdiff
path: root/docs/design/interfaces.md
diff options
context:
space:
mode:
authorJay Kwak <82421531+jkwak-work@users.noreply.github.com>2024-10-25 21:12:37 -0700
committerGitHub <noreply@github.com>2024-10-25 21:12:37 -0700
commita508b264eda4bc3c99ba1f44eab1dec6e5ce06c0 (patch)
tree717722aefcae6b2a5adbccfbcd8aece4ed81f0b7 /docs/design/interfaces.md
parent49c691e86862d092cd389a02beb4003ee59a4417 (diff)
Swap the term StdLib with Core-Module or Standard-Module in documents (#5414)
This PR is limited to documents. All use of "Standard library" or "StdLib" are replaced with either "core module" or "standard modules", depending on the context.
Diffstat (limited to 'docs/design/interfaces.md')
-rw-r--r--docs/design/interfaces.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/design/interfaces.md b/docs/design/interfaces.md
index 29740694e..c0e284f59 100644
--- a/docs/design/interfaces.md
+++ b/docs/design/interfaces.md
@@ -163,7 +163,7 @@ That is intentional, because at the most basic level, interfaces are designed to
### Generic Declarations
-The Slang compiler currently has some ad hoc support for generic declarations that it uses to implement the HLSL standard library (which has a few generic types).
+The Slang compiler currently has some ad hoc support for generic declarations that it uses to implement the HLSL standard module (which has a few generic types).
The syntax for those is currently very bad, and it makes sense to converge on the style for generic declarations used by C# and Swift:
float myGenericFunc<T>(T someValue);