tint: Rename 'static_assert' to 'const_assert'
Bug: tint:1807
Change-Id: I2c2a205ada01ad14d0bf6620a3dc3ec84dd7ee67
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/117212
Kokoro: Kokoro <noreply+kokoro@google.com>
Reviewed-by: Dan Sinclair <dsinclair@chromium.org>
Commit-Queue: Ben Clayton <bclayton@google.com>
diff --git a/docs/tint/ir.md b/docs/tint/ir.md
index b65154b..fb58952 100644
--- a/docs/tint/ir.md
+++ b/docs/tint/ir.md
@@ -20,7 +20,7 @@
The IR helps with the complexity of the AST transforms by limiting the
representations seen in the IR form. For example, instead of `for`,
`while` and `loop` constructs there is a single `loop` construct.
-`alias` and `static_assert` nodes are not emitted into IR. Dead code is
+`alias` and `const_assert` nodes are not emitted into IR. Dead code is
eliminated during the IR construction.
As the IR can convert into AST, we could potentially simplify the
@@ -48,7 +48,7 @@
instance:
* No `alias` nodes
-* No `static_assert` nodes
+* No `const_assert` nodes
* All loops become `while` loops
* `if` statements may all become `if/else`