Post: Fix comment referring to error-chain.
This commit is contained in:
parent
4e46adeba1
commit
3760f84da8
1 changed files with 1 additions and 2 deletions
|
@ -13,8 +13,7 @@ extern crate edn;
|
||||||
extern crate itertools;
|
extern crate itertools;
|
||||||
|
|
||||||
/// A `ValueParseError` is a `combine::primitives::ParseError`-alike that implements the `Debug`,
|
/// A `ValueParseError` is a `combine::primitives::ParseError`-alike that implements the `Debug`,
|
||||||
/// `Display`, and `std::error::Error` traits. In addition, it doesn't capture references, making
|
/// `Display`, and `std::error::Error` traits. In addition, it doesn't capture references.
|
||||||
/// it possible to store `ValueParseError` instances in local links with the `error-chain` crate.
|
|
||||||
///
|
///
|
||||||
/// This is achieved by wrapping slices of type `&'a [edn::Value]` in an owning type that implements
|
/// This is achieved by wrapping slices of type `&'a [edn::Value]` in an owning type that implements
|
||||||
/// `Display`; rather than introducing a newtype like `DisplayVec`, we re-use `edn::Value::Vector`.
|
/// `Display`; rather than introducing a newtype like `DisplayVec`, we re-use `edn::Value::Vector`.
|
||||||
|
|
Loading…
Reference in a new issue