From 3760f84da81663981ceb9feb53706e93d0bd3227 Mon Sep 17 00:00:00 2001 From: Nick Alexander Date: Wed, 20 Jun 2018 14:39:29 -0700 Subject: [PATCH] Post: Fix comment referring to error-chain. --- parser-utils/src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/parser-utils/src/lib.rs b/parser-utils/src/lib.rs index ca85bc64..c0408f72 100644 --- a/parser-utils/src/lib.rs +++ b/parser-utils/src/lib.rs @@ -13,8 +13,7 @@ extern crate edn; extern crate itertools; /// 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 -/// it possible to store `ValueParseError` instances in local links with the `error-chain` crate. +/// `Display`, and `std::error::Error` traits. In addition, it doesn't capture references. /// /// 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`.