From ab0d7ae1a2c7e218b9be8399aed64ebcf217a8a6 Mon Sep 17 00:00:00 2001 From: Caleb Cartwright Date: Wed, 8 Mar 2023 23:26:06 -0600 Subject: [PATCH] docs: fix a couple typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3cfc143..0e54f0a 100644 --- a/README.md +++ b/README.md @@ -21,11 +21,11 @@ These methods are "panic safe", meaning that if a call to external code (e.g., a * Items in `0..len()` will only be items originally in the `Vec` or items being added to the `Vec`. It will never include uninitialized memory, duplicated items or dropped items. * Items originally (but no longer) in the `Vec` or being added to (but not yet in) the `Vec` may be leaked - any method that may leak items like this will have a note to specify its behavior. -The exact behavior of each method is specified in its documentations. +The exact behavior of each method is specified in its documentation. ## Code origin -Most of this code is forked form [Rust's Standard Library](https://github.com/rust-lang/rust). While we will attempt to keep the code and docs in sync, if you notice any issues please check if they have been fixed in the Standard Library first. +Most of this code is forked from [Rust's Standard Library](https://github.com/rust-lang/rust). While we will attempt to keep the code and docs in sync, if you notice any issues please check if they have been fixed in the Standard Library first. ## This API is incomplete