wgsl: Replace 'elseif' with 'else if'

Bug: tint:1289
Change-Id: I72432391e60cf5ff173aa51a6d4a2bc8ef58fbf2
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/75240
Reviewed-by: James Price <jrprice@google.com>
Commit-Queue: Ben Clayton <bclayton@google.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
This commit is contained in:
Ben Clayton
2022-01-04 20:06:49 +00:00
committed by Tint LUCI CQ
parent 7d88368c56
commit 1372222215
14 changed files with 140 additions and 149 deletions

View File

@@ -221,7 +221,7 @@ TEST_F(ResolverCompoundStatementTest, If) {
// fn F() {
// if (cond_a) {
// stat_a;
// } elseif (cond_b) {
// } else if (cond_b) {
// stat_b;
// } else {
// stat_c;