File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
ql/lib/codeql/ruby/dataflow Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ abstract class SummarizedCallable extends LibraryCallable {
87
87
/**
88
88
* Same as
89
89
*
90
- * ```rb
90
+ * ```ql
91
91
* propagatesFlow(
92
92
* SummaryComponentStack input, SummaryComponentStack output, boolean preservesValue
93
93
* )
@@ -106,10 +106,10 @@ abstract class SummarizedCallable extends LibraryCallable {
106
106
predicate clearsContent ( int i , DataFlow:: Content content ) { none ( ) }
107
107
}
108
108
109
- private class SummarizedCallableAdaptor extends Impl:: Public:: SummarizedCallable {
109
+ private class SummarizedCallableAdapter extends Impl:: Public:: SummarizedCallable {
110
110
private SummarizedCallable sc ;
111
111
112
- SummarizedCallableAdaptor ( ) { this = TLibraryCallable ( sc ) }
112
+ SummarizedCallableAdapter ( ) { this = TLibraryCallable ( sc ) }
113
113
114
114
final override predicate propagatesFlow (
115
115
SummaryComponentStack input , SummaryComponentStack output , boolean preservesValue
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ class DataFlowCallable extends TDataFlowCallable {
57
57
/** Gets the underlying source code callable, if any. */
58
58
Callable asCallable ( ) { this = TCfgScope ( result ) }
59
59
60
- /** Get the underlying library callable, if any. */
60
+ /** Gets the underlying library callable, if any. */
61
61
LibraryCallable asLibraryCallable ( ) { this = TLibraryCallable ( result ) }
62
62
63
63
/** Gets a textual representation of this callable. */
You can’t perform that action at this time.
0 commit comments