Skip to content

Commit a2bf2c7

Browse files
committed
Rust: Fix query result columns.
1 parent 1c7d521 commit a2bf2c7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

rust/ql/src/queries/unusedentities/UnusedValue.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
* @tags maintainability
99
*/
1010

11-
select 1
11+
select 1, "Variable is assigned a value that is never used."

rust/ql/src/queries/unusedentities/UnusedVariable.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
* @tags maintainability
99
*/
1010

11-
select 1
11+
select 1, "Variable is not used."
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
| 1 |
1+
| 1 | Variable is assigned a value that is never used. |
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
| 1 |
1+
| 1 | Variable is not used. |

0 commit comments

Comments
 (0)