summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorTim Foley <tfoley@nvidia.com>2020-06-19 11:50:15 -0700
committerTim Foley <tfoley@nvidia.com>2020-06-19 11:50:15 -0700
commit19880116635a4a76af55d876b82ec966c90deafb (patch)
treec00d6cf873d2ee1dfb50eeae782b082d2f72770a /source
parent11e377a541023973213ec758fbec68e2772ce7bc (diff)
fixup: review feedback
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();
// }