Skip to content

Commit 68d41f9

Browse files
committed
Address review comments
1 parent e670fdb commit 68d41f9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ql/lib/codeql/ruby/dataflow/FlowSummary.qll

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ abstract class SummarizedCallable extends LibraryCallable {
8787
/**
8888
* Same as
8989
*
90-
* ```rb
90+
* ```ql
9191
* propagatesFlow(
9292
* SummaryComponentStack input, SummaryComponentStack output, boolean preservesValue
9393
* )
@@ -106,10 +106,10 @@ abstract class SummarizedCallable extends LibraryCallable {
106106
predicate clearsContent(int i, DataFlow::Content content) { none() }
107107
}
108108

109-
private class SummarizedCallableAdaptor extends Impl::Public::SummarizedCallable {
109+
private class SummarizedCallableAdapter extends Impl::Public::SummarizedCallable {
110110
private SummarizedCallable sc;
111111

112-
SummarizedCallableAdaptor() { this = TLibraryCallable(sc) }
112+
SummarizedCallableAdapter() { this = TLibraryCallable(sc) }
113113

114114
final override predicate propagatesFlow(
115115
SummaryComponentStack input, SummaryComponentStack output, boolean preservesValue

ql/lib/codeql/ruby/dataflow/internal/DataFlowDispatch.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class DataFlowCallable extends TDataFlowCallable {
5757
/** Gets the underlying source code callable, if any. */
5858
Callable asCallable() { this = TCfgScope(result) }
5959

60-
/** Get the underlying library callable, if any. */
60+
/** Gets the underlying library callable, if any. */
6161
LibraryCallable asLibraryCallable() { this = TLibraryCallable(result) }
6262

6363
/** Gets a textual representation of this callable. */

0 commit comments

Comments
 (0)