Fix spelling of "data structure"

This commit is contained in:
Vincent Esche 2024-07-30 14:28:13 +02:00
parent ddb9686246
commit 0a45f6dc24
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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.