summaryrefslogtreecommitdiff
path: root/docs/proposals/007-variadic-generics.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/proposals/007-variadic-generics.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/proposals/007-variadic-generics.md')
-rw-r--r--docs/proposals/007-variadic-generics.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/proposals/007-variadic-generics.md b/docs/proposals/007-variadic-generics.md
index 9249119f7..8e5de1f04 100644
--- a/docs/proposals/007-variadic-generics.md
+++ b/docs/proposals/007-variadic-generics.md
@@ -29,8 +29,8 @@ Background
----------
We have several cases that will benefit from variadic generics. One simplest example is the `printf` function is currently
-defined to have different overloads for each number of arguments. The downside of duplicating overloads is the bloating standard
-library size and a predefined upper limit of argument count. If users are to build their own functions that wraps the `printf`
+defined to have different overloads for each number of arguments. The downside of duplicating overloads is the bloating the core
+module size and a predefined upper limit of argument count. If users are to build their own functions that wraps the `printf`
function, they will have to define a set of overloads for each number of arguments too, further bloating code size.
Some of our users would like to implement the functor idiom in their shader code with interfaces. This is almost possible