diff options
| author | Tim Foley <tfoley@nvidia.com> | 2020-06-19 11:50:15 -0700 |
|---|---|---|
| committer | Tim Foley <tfoley@nvidia.com> | 2020-06-19 11:50:15 -0700 |
| commit | 19880116635a4a76af55d876b82ec966c90deafb (patch) | |
| tree | c00d6cf873d2ee1dfb50eeae782b082d2f72770a | |
| parent | 11e377a541023973213ec758fbec68e2772ce7bc (diff) | |
fixup: review feedback
| -rw-r--r-- | source/slang/slang-check-decl.cpp | 4 |
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(); // } |
