Skip to content

Commit 2dd2f2e

Browse files
committed
Rust: Address review comments
1 parent 8cde1ee commit 2dd2f2e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

rust/ql/lib/codeql/rust/elements/Call.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Call.
2+
* This module provides the public class `Call`.
33
*/
44

55
private import internal.CallImpl

rust/ql/lib/codeql/rust/elements/internal/CallImpl.qll

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ module Impl {
88
/**
99
* An expression that calls a function.
1010
*
11-
* This class abstract over the different ways in which a function can be called in Rust.
11+
* This class abstracts over the different ways in which a function can be called in Rust.
1212
*/
1313
abstract class Call extends ExprImpl::Expr {
14-
Call() { this.fromSource() }
15-
1614
/** Gets the number of arguments _excluding_ any `self` argument. */
1715
abstract int getNumberOfArguments();
1816

0 commit comments

Comments
 (0)