summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rw-r--r--source/slang/slang-check-decl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/slang/slang-check-decl.cpp b/source/slang/slang-check-decl.cpp
index ed273e2a4..600d456b8 100644
--- a/source/slang/slang-check-decl.cpp
+++ b/source/slang/slang-check-decl.cpp
@@ -1456,7 +1456,7 @@ namespace Slang
// interface ICounter { [mutating] int increment(); }
// struct MyCounter : ICounter
// {
- // int increment(int val = 1) { ... }
+ // [murtating] int increment(int val = 1) { ... }
// }
//
// It is clear in this case that the `MyCounter` type *can*
@@ -1469,7 +1469,7 @@ namespace Slang
// struct MyCounter ...
// {
// ...
- // int synthesized()
+ // [murtating] int synthesized()
// {
// return this.increment();
// }