From 19880116635a4a76af55d876b82ec966c90deafb Mon Sep 17 00:00:00 2001 From: Tim Foley Date: Fri, 19 Jun 2020 11:50:15 -0700 Subject: fixup: review feedback --- source/slang/slang-check-decl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/slang') 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(); // } -- cgit v1.2.3