aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2019-01-13 06:58:06 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2019-01-13 06:58:06 +0000
commit40686722ba0762c4af396da120331710edfeabe8 (patch)
treebfdae37310454a6de19b68d15bde8e4ffbe24e05
parenteb931c0d9e0877e573622253ae5b05563841037b (diff)
parentecf9c203edcf37a5f60fc7455cab56724fb8907a (diff)
Merge #515
515: Fix typos r=matklad a=kjeremy Co-authored-by: Jeremy Kolb <[email protected]>
-rw-r--r--crates/ra_ide_api_light/src/assists.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_ide_api_light/src/assists.rs b/crates/ra_ide_api_light/src/assists.rs
index 3495ad967..a27ef5da7 100644
--- a/crates/ra_ide_api_light/src/assists.rs
+++ b/crates/ra_ide_api_light/src/assists.rs
@@ -1,6 +1,6 @@
1//! This modules contains various "assits": suggestions for source code edits 1//! This modules contains various "assists": suggestions for source code edits
2//! which are likely to occur at a given cursor positon. For example, if the 2//! which are likely to occur at a given cursor positon. For example, if the
3//! cursor is on the `,`, a possible assist is swapping the elments around the 3//! cursor is on the `,`, a possible assist is swapping the elements around the
4//! comma. 4//! comma.
5 5
6mod flip_comma; 6mod flip_comma;