about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYiqun Liu <ffengyu964@gmail.com>2025-07-18 19:06:50 +0800
committerYiqun Liu <ffengyu964@gmail.com>2025-07-18 19:06:50 +0800
commiteda2d0d2365d913022e9626acf9767fbf17f62e6 (patch)
tree6e92f05c1cd628317d098150a08268a7036e1514
parent41c0c5b73cddbed636a1a48c8a38b7c66b8641cf (diff)
downloadrust-eda2d0d2365d913022e9626acf9767fbf17f62e6.tar.gz
rust-eda2d0d2365d913022e9626acf9767fbf17f62e6.zip
fix typos
-rw-r--r--src/doc/rustc-dev-guide/src/serialization.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/serialization.md b/src/doc/rustc-dev-guide/src/serialization.md
index 47667061eda..8eb37bbe20b 100644
--- a/src/doc/rustc-dev-guide/src/serialization.md
+++ b/src/doc/rustc-dev-guide/src/serialization.md
@@ -75,7 +75,7 @@ impl<D: Decoder> Decodable<D> for MyStruct {
 
 rustc has a lot of [arena allocated types].
 Deserializing these types isn't possible without access to the arena that they need to be allocated on.
-The [`TyDecoder`] and [`TyEncoder`] traits are supertraits of [`Decoder`] and [`Encoder`] that allow access to a [`TyCtxt`].
+The [`TyDecoder`] and [`TyEncoder`] traits are subtraits of [`Decoder`] and [`Encoder`] that allow access to a [`TyCtxt`].
 
 Types which contain `arena` allocated types can then bound the type parameter of their
 [`Encodable`] and [`Decodable`] implementations with these traits.