diff --git a/wgsl/index.bs b/wgsl/index.bs
index 67b76410f7..66f9794a2d 100644
--- a/wgsl/index.bs
+++ b/wgsl/index.bs
@@ -5577,13 +5577,13 @@ The expression must evaluate to a reference with an [=integer scalar=] [=store t
|r| : ref<SC,|T|,[=access/read_write=]>,
|T| is [=integer scalar=]
- | |r|++
+ | |r|`++`
| Adds 1 to the contents of memory referenced by |r|.
Same as |r| += |T|(1)
|
|r| : ref<SC,|T|,[=access/read_write=]>,
|T| is [=integer scalar=]
- | |r|--
+ | |r|`--`
| Subtracts 1 from the contents of memory referenced by |r|.
Same as |r| -= |T|(1)
|