diff options
author | kjeremy <[email protected]> | 2019-10-11 20:13:15 +0100 |
---|---|---|
committer | kjeremy <[email protected]> | 2019-10-11 20:13:15 +0100 |
commit | 04963fa14d2732ddf5b958c495ca884e29812589 (patch) | |
tree | a2df4ea27384cf6f5d3f82ad7b73a523f02f83ef /crates/ra_lsp_server/src | |
parent | 0896ca04c4e6f88ae268a39472570df4b6d360b0 (diff) |
No need to make config pub
Diffstat (limited to 'crates/ra_lsp_server/src')
-rw-r--r-- | crates/ra_lsp_server/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/lib.rs b/crates/ra_lsp_server/src/lib.rs index 7a71a90fb..0e5dbbbd5 100644 --- a/crates/ra_lsp_server/src/lib.rs +++ b/crates/ra_lsp_server/src/lib.rs | |||
@@ -7,7 +7,7 @@ mod conv; | |||
7 | mod main_loop; | 7 | mod main_loop; |
8 | mod markdown; | 8 | mod markdown; |
9 | pub mod req; | 9 | pub mod req; |
10 | pub mod config; | 10 | mod config; |
11 | mod world; | 11 | mod world; |
12 | 12 | ||
13 | pub type Result<T> = std::result::Result<T, Box<dyn std::error::Error + Send + Sync>>; | 13 | pub type Result<T> = std::result::Result<T, Box<dyn std::error::Error + Send + Sync>>; |