diff options
author | DJMcNab <[email protected]> | 2018-12-29 22:07:56 +0000 |
---|---|---|
committer | DJMcNab <[email protected]> | 2018-12-29 22:07:56 +0000 |
commit | 764ddc0c8506b0d5356681b8b333e387cb0ba6b6 (patch) | |
tree | a2f878fcc8ead606b0d9eee620bdd77c73d29754 | |
parent | 7fe32938b672d1fb9668b29061ac47b90f1ba599 (diff) |
Fix a switched line in a comment
-rw-r--r-- | crates/ra_vfs/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_vfs/src/lib.rs b/crates/ra_vfs/src/lib.rs index 4de07b093..7fccc3088 100644 --- a/crates/ra_vfs/src/lib.rs +++ b/crates/ra_vfs/src/lib.rs | |||
@@ -2,8 +2,8 @@ | |||
2 | //! | 2 | //! |
3 | //! When doing analysis, we don't want to do any IO, we want to keep all source | 3 | //! When doing analysis, we don't want to do any IO, we want to keep all source |
4 | //! code in memory. However, the actual source code is stored on disk, so you | 4 | //! code in memory. However, the actual source code is stored on disk, so you |
5 | //! component which does this. | ||
6 | //! need to get it into the memory in the first place somehow. VFS is the | 5 | //! need to get it into the memory in the first place somehow. VFS is the |
6 | //! component which does this. | ||
7 | //! | 7 | //! |
8 | //! It also is responsible for watching the disk for changes, and for merging | 8 | //! It also is responsible for watching the disk for changes, and for merging |
9 | //! editor state (modified, unsaved files) with disk state. | 9 | //! editor state (modified, unsaved files) with disk state. |