Unnamed repository; edit this file 'description' to name the repository.
-rw-r--r--crates/ide-db/Cargo.toml2
-rw-r--r--crates/ide-db/src/lib.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/crates/ide-db/Cargo.toml b/crates/ide-db/Cargo.toml
index 7eeb36cebb..1d395f1c2d 100644
--- a/crates/ide-db/Cargo.toml
+++ b/crates/ide-db/Cargo.toml
@@ -2,7 +2,7 @@
name = "ide-db"
version = "0.0.0"
repository = "https://github.com/rust-lang/rust-analyzer"
-description = "Core data-structure representing IDE state."
+description = "Core data structure representing IDE state."
authors.workspace = true
edition.workspace = true
diff --git a/crates/ide-db/src/lib.rs b/crates/ide-db/src/lib.rs
index cb1cf793d4..3cf29987fa 100644
--- a/crates/ide-db/src/lib.rs
+++ b/crates/ide-db/src/lib.rs
@@ -1,4 +1,4 @@
-//! This crate defines the core datastructure representing IDE state -- `RootDatabase`.
+//! This crate defines the core data structure representing IDE state -- `RootDatabase`.
//!
//! It is mainly a `HirDatabase` for semantic analysis, plus a `SymbolsDatabase`, for fuzzy search.