Skip to content
This repository has been archived by the owner on Jan 3, 2023. It is now read-only.

Commit

Permalink
Fix version number
Browse files Browse the repository at this point in the history
  • Loading branch information
mtshiba committed Dec 7, 2022
1 parent 782b60b commit 56c65df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "els"
version = "0.1.12"
version = "0.1.11"
edition = "2021"
description = "An Erg compiler frontend for IDEs, implements LSP."
authors = ["Shunsuke Shibayama <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ impl Server {
let token = opt_token.unwrap();
if let Some(hir) = &self.hir {
if let Some(t) = visit_hir_t(hir, &token) {
let typ = MarkedString::from_language_code("erg".into(), format!(": {t}"));
let typ = MarkedString::from_language_code("erg".into(), format!("{}: {t}", token.content));
contents.push(typ);
}
}
Expand Down

0 comments on commit 56c65df

Please sign in to comment.