about summary refs log tree commit diff
path: root/docs/dev
diff options
context:
space:
mode:
authorDezhi Wu <wu543065657@163.com>2022-08-17 21:44:58 +0800
committerDezhi Wu <wu543065657@163.com>2022-08-17 21:44:58 +0800
commit23747419ca52414d3ecf6f69f1e530e47ab1e937 (patch)
treeeb4eccaab64f2ff0e88817d2dc0299df8b2ebe9c /docs/dev
parentbaa2cccb24023a246d4258b08ff4064c9169e67e (diff)
downloadrust-23747419ca52414d3ecf6f69f1e530e47ab1e937.tar.gz
rust-23747419ca52414d3ecf6f69f1e530e47ab1e937.zip
fix: a bunch of typos
This PR will fix some typos detected by [typos].

There are also some other typos in the function names, variable names, and file
names, which I leave as they are. I'm more certain that typos in comments
should be fixed.

[typos]: https://github.com/crate-ci/typos
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/architecture.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/architecture.md b/docs/dev/architecture.md
index 51e26c58a91..c173a239fea 100644
--- a/docs/dev/architecture.md
+++ b/docs/dev/architecture.md
@@ -485,7 +485,7 @@ Mind the code--architecture gap: at the moment, we are using fewer feature flags
 ### Serialization
 
 In Rust, it is easy (often too easy) to add serialization to any type by adding `#[derive(Serialize)]`.
-This easiness is misleading -- serializable types impose significant backwards compatability constraints.
+This easiness is misleading -- serializable types impose significant backwards compatibility constraints.
 If a type is serializable, then it is a part of some IPC boundary.
 You often don't control the other side of this boundary, so changing serializable types is hard.