Skip to content

Commit 1dc3376

Browse files
committed
minor: typo
1 parent c595676 commit 1dc3376

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/dev/architecture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ Mind the code--architecture gap: at the moment, we are using fewer feature flags
463463
In Rust, it is easy (often too easy) to add serialization to any type by adding `#[derive(Serialize)]`.
464464
This easiness is misleading -- serializable types impose significant backwards compatability constraints.
465465
If a type is serializable, then it is a part of some IPC boundary.
466-
You often don't have control over the over side of this boundary, so changing serializable types are hard.
466+
You often don't control the other side of this boundary, so changing serializable types are hard.
467467

468468
For this reason, the types in `ide`, `base_db` and bellow are not serializable by design.
469469
If such types need to cross an IPC boundary, then the client of rust-analyzer needs to provide custom, client-specific serialization format.

0 commit comments

Comments
 (0)