mirror of
https://github.com/joshuadavidthomas/django-language-server.git
synced 2025-09-07 19:00:35 +00:00
Remove internal project references from documentation
This commit is contained in:
parent
6a60876608
commit
d709350d65
2 changed files with 4 additions and 7 deletions
|
@ -11,8 +11,7 @@ use std::collections::BTreeSet;
|
|||
///
|
||||
/// ## Design Rationale
|
||||
///
|
||||
/// This custom implementation was chosen over existing overlay filesystems (see `decision-2`)
|
||||
/// because it provides:
|
||||
/// This custom implementation was chosen over existing overlay filesystems because it provides:
|
||||
/// - Proper deletion semantics without whiteout markers
|
||||
/// - LSP-specific behavior for handling editor lifecycle events
|
||||
/// - Predictable exists() behavior that aligns with LSP client expectations
|
||||
|
@ -45,9 +44,6 @@ pub struct FileSystem {
|
|||
}
|
||||
|
||||
impl FileSystem {
|
||||
// Implementation follows decision-2: Custom vfs::FileSystem Implementation for Language Server
|
||||
// See backlog/decisions/decision-2 for detailed rationale
|
||||
|
||||
/// Creates a new FileSystem rooted at the specified path.
|
||||
///
|
||||
/// The FileSystem will provide access to files within the root path through both
|
||||
|
|
|
@ -29,8 +29,9 @@
|
|||
//!
|
||||
//! ## Design Decisions
|
||||
//!
|
||||
//! See `backlog/decisions/decision-2` for the detailed rationale behind the custom
|
||||
//! VFS implementation instead of using existing overlay filesystem libraries.
|
||||
//! The custom VFS implementation was chosen over existing overlay filesystem libraries
|
||||
//! to provide proper deletion semantics and LSP-specific behavior optimized for
|
||||
//! language server operations.
|
||||
|
||||
mod document;
|
||||
mod store;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue