aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/lib.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-04-22 08:10:05 +0100
committerAleksey Kladov <[email protected]>2019-04-22 08:11:06 +0100
commit5b2fd86d2523299c4a5ec58ad33c3474f52f85a2 (patch)
treea160da639b703d328cb0e1b7f755f64c22864656 /crates/ra_assists/src/lib.rs
parent97f41d7343a4801f296cd6a7a45ece9249c15886 (diff)
more type safety
Diffstat (limited to 'crates/ra_assists/src/lib.rs')
-rw-r--r--crates/ra_assists/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_assists/src/lib.rs b/crates/ra_assists/src/lib.rs
index 3151b1c44..60b4d5c63 100644
--- a/crates/ra_assists/src/lib.rs
+++ b/crates/ra_assists/src/lib.rs
@@ -37,7 +37,7 @@ pub struct AssistAction {
37 pub target: Option<TextRange>, 37 pub target: Option<TextRange>,
38} 38}
39 39
40/// Return all the assists applicable at the given position. 40/// Return all the assists eapplicable at the given position.
41/// 41///
42/// Assists are returned in the "unresolved" state, that is only labels are 42/// Assists are returned in the "unresolved" state, that is only labels are
43/// returned, without actual edits. 43/// returned, without actual edits.