From c5b513592ea277581487c8e8c556d6e682711cef Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Wed, 7 Jun 2023 19:17:49 -0600 Subject: [PATCH] Update README.md Typo fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7e664106..60fa74d2 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ For example, the `uint64` type from the `SSZ` spec is represented by Rust's nati The library also provides custom types for `List`, `Vector`, `Bitlist` and `Bitvector` following the `SSZ` spec. Each of these custom types should behave approximately like Rust's `Vec` type. A notable exception is deferring to -the underlying types iteration capabilities; e.g. to iterate a `List` you must explicitly call `.iter()`. +the underlying type's iteration capabilities; e.g. to iterate a `List` you must explicitly call `.iter()`. For safety, there are only a few ways to construct an instance of each of these custom types: