diff options
author | Aleksey Kladov <[email protected]> | 2019-01-08 19:30:32 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-01-08 19:30:32 +0000 |
commit | fa3c9ce3921b6a3f67222bf4f9b4efdf4f11c2a5 (patch) | |
tree | 7c31b3941d011c475141e92104464ec4cced6ad8 /crates/ra_ide_api_light | |
parent | 1967884d6836219ee78a754ca5c66ac781351559 (diff) |
fix usages after rename
Diffstat (limited to 'crates/ra_ide_api_light')
-rw-r--r-- | crates/ra_ide_api_light/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/ra_ide_api_light/src/lib.rs | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/crates/ra_ide_api_light/Cargo.toml b/crates/ra_ide_api_light/Cargo.toml index a97d2308f..8c192fca6 100644 --- a/crates/ra_ide_api_light/Cargo.toml +++ b/crates/ra_ide_api_light/Cargo.toml | |||
@@ -1,6 +1,6 @@ | |||
1 | [package] | 1 | [package] |
2 | edition = "2018" | 2 | edition = "2018" |
3 | name = "ra_editor" | 3 | name = "ra_ide_api_light" |
4 | version = "0.1.0" | 4 | version = "0.1.0" |
5 | authors = ["Aleksey Kladov <[email protected]>"] | 5 | authors = ["Aleksey Kladov <[email protected]>"] |
6 | publish = false | 6 | publish = false |
diff --git a/crates/ra_ide_api_light/src/lib.rs b/crates/ra_ide_api_light/src/lib.rs index 5a6af19b7..40638eda8 100644 --- a/crates/ra_ide_api_light/src/lib.rs +++ b/crates/ra_ide_api_light/src/lib.rs | |||
@@ -1,3 +1,8 @@ | |||
1 | //! This crate provides thouse IDE features which use only a single file. | ||
2 | //! | ||
3 | //! This usually means functions which take sytnax tree as an input and produce | ||
4 | //! an edit or some auxilarly info. | ||
5 | |||
1 | pub mod assists; | 6 | pub mod assists; |
2 | mod extend_selection; | 7 | mod extend_selection; |
3 | mod folding_ranges; | 8 | mod folding_ranges; |