From a9617f18a17d4daf9cd01ecd7a016adf56093242 Mon Sep 17 00:00:00 2001 From: Asger F Date: Tue, 30 Jun 2026 15:48:15 +0200 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .../ql/lib/utils/test/internal/InlineExpectationsTestImpl.qll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unified/ql/lib/utils/test/internal/InlineExpectationsTestImpl.qll b/unified/ql/lib/utils/test/internal/InlineExpectationsTestImpl.qll index 748a9b1a6c5..b7330168741 100644 --- a/unified/ql/lib/utils/test/internal/InlineExpectationsTestImpl.qll +++ b/unified/ql/lib/utils/test/internal/InlineExpectationsTestImpl.qll @@ -4,7 +4,7 @@ private import codeql.util.test.InlineExpectationsTest module Impl implements InlineExpectationsTestSig { class ExpectationComment extends U::Comment { - /** Gets the contents of the given comment, _without_ the preceding comment marker (`//`). */ + /** Gets the text inside this comment, without the surrounding comment delimiters. */ string getContents() { result = this.getCommentText() } }