doc: fix typos

Co-authored-by: ljedrz <ljedrz@users.noreply.github.com>
This commit is contained in:
Joonas Koivunen 2020-07-09 18:13:49 +03:00 committed by GitHub
parent d00eb829f9
commit f75af14d3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@ use std::fmt::{self, Display};
use std::ops::{Deref, DerefMut};
use std::str::FromStr;
/// Wrapper for anything which implements FromStr to get make it serde::Deserialize. Will turn
/// A wrapper for anything that implements FromStr to make it serde::Deserialize. Will turn
/// Display to serde::Serialize. Probably should be used with Cid, PeerId and such.
///
/// Monkeyd from: https://github.com/serde-rs/serde/issues/1316