summaryrefslogtreecommitdiffstats
path: root/docs/design/interfaces.md
diff options
context:
space:
mode:
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);