From e51947663346548c1747b1c40a648fac7f4506da Mon Sep 17 00:00:00 2001 From: Pyfisch Date: Sat, 13 May 2017 17:37:46 +0200 Subject: [PATCH] uint -> usize in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b37d430..cda12a2 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ then the contents. However, there are some implementation details to be aware of: * `isize`/`usize` are encoded as `i64`/`u64`, for portability. -* enums variants are encoded as a `u32` instead of a `uint`. +* enums variants are encoded as a `u32` instead of a `usize`. `u32` is enough for all practical uses. * `str` is encoded as `(u64, &[u8])`, where the `u64` is the number of bytes contained in the encoded string.