fix all reviews

This commit is contained in:
Milo 2021-06-28 07:31:54 +01:00
parent 044e21ae08
commit d1821e4b6e
3 changed files with 3 additions and 3 deletions

3
.gitignore vendored
View File

@ -10,5 +10,4 @@ crates/*/target
generated_assists.adoc
generated_features.adoc
generated_diagnostic.adoc
.DS_Store
.glitterrc
.DS_Store

View File

@ -21,6 +21,7 @@ pulldown-cmark-to-cmark = "6.0.0"
pulldown-cmark = { version = "0.8.0", default-features = false }
url = "2.1.1"
dot = "0.1.4"
stdx = { path = "../stdx", version = "0.0.0" }
syntax = { path = "../syntax", version = "0.0.0" }
text_edit = { path = "../text_edit", version = "0.0.0" }

View File

@ -151,7 +151,7 @@ struct LibrarySymbolsStats {
impl fmt::Display for LibrarySymbolsStats {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
write!(fmt, "{} of index symbols", self.size)
write!(fmt, "{} of index symbols ({})", self.size, self.total)
}
}