about summary refs log tree commit diff
path: root/docs/dev
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-08-17 14:59:02 +0000
committerbors <bors@rust-lang.org>2022-08-17 14:59:02 +0000
commit82ff740501e1da239a6c9ff94dddf7ae1ca9aeb6 (patch)
tree269b92c3e279d12f859f32091222fe498e15c904 /docs/dev
parentd6412b58666ee399bdc56a868a79ed322d6a3fcd (diff)
parent23747419ca52414d3ecf6f69f1e530e47ab1e937 (diff)
downloadrust-82ff740501e1da239a6c9ff94dddf7ae1ca9aeb6.tar.gz
rust-82ff740501e1da239a6c9ff94dddf7ae1ca9aeb6.zip
Auto merge of #13044 - dzvon:fix-typo, r=Veykril
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.