Skip to content

Commit f234b80

Browse files
committed
Remove erroneous comment
1 parent 5e88436 commit f234b80

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed

crates/ide/src/runnables.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -110,16 +110,6 @@ pub(crate) fn runnables(db: &RootDatabase, file_id: FileId) -> Vec<Runnable> {
110110
res
111111
}
112112

113-
// Feature: Run Test
114-
//
115-
// Shows a popup suggesting to run a test in which the item **at the current cursor
116-
// ___location** is used (if any).
117-
//
118-
// |===
119-
// | Editor | Action Name
120-
//
121-
// | VS Code | **Rust Analyzer: Run Test**
122-
// |===
123113
pub(crate) fn related_tests(
124114
db: &RootDatabase,
125115
position: FilePosition,

editors/code/src/lsp_ext.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export interface Runnable {
7272
}
7373
export const runnables = new lc.RequestType<RunnablesParams, Runnable[], void>("experimental/runnables");
7474

75-
export interface RelatedTestsParams extends lc.TextDocumentPositionParams {
75+
export interface RelatedTestsParams extends lc.TextDocumentPositionParams {
7676
}
7777

7878
export interface TestInfo {

0 commit comments

Comments
 (0)