diff options
| author | İsmail Arılık <arilik.ismail@gmail.com> | 2023-07-27 16:37:47 +0300 |
|---|---|---|
| committer | Tshepang Mbambo <tshepang@gmail.com> | 2023-07-27 16:52:51 +0200 |
| commit | 51da0f85e6040d67a03ec50dc3bef2193816a32c (patch) | |
| tree | df788cb02dc425329d2fb9a14a40a5d95ba9d896 /src/doc/rustc-dev-guide | |
| parent | 1676b649513ad50f5eb8c13b9b622303ff55d750 (diff) | |
| download | rust-51da0f85e6040d67a03ec50dc3bef2193816a32c.tar.gz rust-51da0f85e6040d67a03ec50dc3bef2193816a32c.zip | |
fix(serialization.md): add a necessary plural suffix
This is better not to have an interruption while reading it fast.
Diffstat (limited to 'src/doc/rustc-dev-guide')
| -rw-r--r-- | src/doc/rustc-dev-guide/src/serialization.md | 2 |
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 691d21bc2c9..d0bfc2f8529 100644 --- a/src/doc/rustc-dev-guide/src/serialization.md +++ b/src/doc/rustc-dev-guide/src/serialization.md @@ -130,7 +130,7 @@ some deserialization needs to be deferred from the initial loading of metadata. The [`LazyValue<T>`] type wraps the (relative) offset in the crate metadata where a `T` has been serialized. There are also some variants, [`LazyArray<T>`] and [`LazyTable<I, T>`]. -The `Lazy<[T]>` and `LazyTable<I, T>` type provide some functionality over +The `Lazy<[T]>` and `LazyTable<I, T>` types provide some functionality over `Lazy<Vec<T>>` and `Lazy<HashMap<I, T>>`: - It's possible to encode a `LazyArray<T>` directly from an iterator, without |
