Skip to content

Commit d881d31

Browse files
committed
C#: Remove comma from QL Doc.
1 parent cd03af3 commit d881d31

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

csharp/ql/src/utils/model-generator/ModelGeneratorUtilsSpecific.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ private predicate isBaseCallableOrPrototype(TargetAPI api) {
3434
)
3535
}
3636

37-
/** Gets a string representing, whether the summary should apply for all overrides of this. */
37+
/** Gets a string representing whether the summary should apply for all overrides of this. */
3838
private string getCallableOverride(TargetAPI api) {
3939
if isBaseCallableOrPrototype(api) then result = "true" else result = "false"
4040
}

csharp/ql/test/shared/FlowSummaries.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ abstract class IncludeSummarizedCallable extends RelevantSummarizedCallable {
2727
)
2828
}
2929

30-
/** Gets a string representing, whether the summary should apply for all overrides of this. */
30+
/** Gets a string representing whether the summary should apply for all overrides of this. */
3131
private string getCallableOverride() {
3232
if this.isBaseCallableOrPrototype() then result = "true" else result = "false"
3333
}

0 commit comments

Comments
 (0)