summaryrefslogtreecommitdiff
path: root/support/texlab/crates/texlab/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'support/texlab/crates/texlab/src/main.rs')
-rw-r--r--support/texlab/crates/texlab/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/texlab/crates/texlab/src/main.rs b/support/texlab/crates/texlab/src/main.rs
index d588a568bc..08977ae96a 100644
--- a/support/texlab/crates/texlab/src/main.rs
+++ b/support/texlab/crates/texlab/src/main.rs
@@ -28,7 +28,7 @@ fn main() -> Result<()> {
setup_logger(opts);
let (connection, threads) = Connection::stdio();
- Server::new(connection).run()?;
+ Server::exec(connection)?;
threads.join()?;
Ok(())