Skip to content

Commit b3dc7a2

Browse files
geoffw0paldepind
andauthored
Apply suggestions from code review
Co-authored-by: Simon Friis Vindum <paldepind@github.com>
1 parent a2944cd commit b3dc7a2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ abstract private class BinaryLogicalOperationImpl extends BinaryExpr, LogicalOpe
1818
final class BinaryLogicalOperation = BinaryLogicalOperationImpl;
1919

2020
/**
21-
* The logical and operation, `&&`.
21+
* The logical "and" operation, `&&`.
2222
*/
2323
final class LogicalAndExpr extends BinaryLogicalOperationImpl, BinaryExpr {
2424
LogicalAndExpr() { this.getOperatorName() = "&&" }
2525
}
2626

2727
/**
28-
* The logical or operation, `||`.
28+
* The logical "or" operation, `||`.
2929
*/
3030
final class LogicalOrExpr extends BinaryLogicalOperationImpl {
3131
LogicalOrExpr() { this.getOperatorName() = "||" }
@@ -39,7 +39,7 @@ abstract private class UnaryLogicalOperationImpl extends PrefixExpr, LogicalOper
3939
final class UnaryLogicalOperation = UnaryLogicalOperationImpl;
4040

4141
/**
42-
* A logical not operation, `!`.
42+
* A logical "not" operation, `!`.
4343
*/
4444
final class LogicalNotExpr extends UnaryLogicalOperationImpl {
4545
LogicalNotExpr() { this.getOperatorName() = "!" }

0 commit comments

Comments
 (0)