core: fix changes in doc

This commit is contained in:
Dmitriy Pleshevskiy 2022-07-27 16:23:37 +03:00
parent 84330c9d9f
commit 64bbf18ac8
Signed by: pleshevskiy
GPG Key ID: 1B59187B161C0215
1 changed files with 2 additions and 3 deletions

View File

@ -112,7 +112,7 @@ pub trait ParseFragment: Sized {
///
/// # Examples
///
/// You can create a ``EString`` from a any type that implement [Display] with ``EString::from``
/// You can create a ``EString`` from a any type that implement ``ToEString`` with ``EString::from``
///
/// ```rust
/// # use estring::EString;
@ -120,8 +120,7 @@ pub trait ParseFragment: Sized {
/// let num = EString::from("999");
/// ```
///
/// You can create a ``EString`` from a any type that implement ``ToEString`` with
/// ``ToEString::to_estring``.
/// You can use ``ToEString::to_estring`` directly on the type.
///
/// ```rust
/// # use estring::ToEString;