aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_vfs
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2019-01-02 15:49:25 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2019-01-02 15:49:25 +0000
commite6aadf6ef21a25a6dae55f39bc774b5a0ef2ad6c (patch)
tree3ba089370f0a838df54b82181ccf2fb636f8d780 /crates/ra_vfs
parent29d8bfb9c909847cb37ff6e564ea0e61744277ad (diff)
parent9672ae001e6be8f4ad3a2fd247999ebb205736ab (diff)
Merge #405
405: extend selection inside a string literal should select a word first r=matklad a=gfreezy fixed #402 Co-authored-by: gfreezy <[email protected]>
Diffstat (limited to 'crates/ra_vfs')
-rw-r--r--crates/ra_vfs/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_vfs/src/lib.rs b/crates/ra_vfs/src/lib.rs
index 757eac95b..5bbc3e993 100644
--- a/crates/ra_vfs/src/lib.rs
+++ b/crates/ra_vfs/src/lib.rs
@@ -11,7 +11,7 @@
11//! to support custom watcher events (related to https://github.com/rust-analyzer/rust-analyzer/issues/131) 11//! to support custom watcher events (related to https://github.com/rust-analyzer/rust-analyzer/issues/131)
12//! 12//!
13//! VFS is based on a concept of roots: a set of directories on the file system 13//! VFS is based on a concept of roots: a set of directories on the file system
14//! whihc are watched for changes. Typically, there will be a root for each 14//! which are watched for changes. Typically, there will be a root for each
15//! Cargo package. 15//! Cargo package.
16mod arena; 16mod arena;
17mod io; 17mod io;