Skip to content
This repository was archived by the owner on Aug 16, 2021. It is now read-only.

examples/all.rs: Fix typo in type name #102

Merged
merged 1 commit into from
Dec 25, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/all.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ error_chain! {
links {
Inner(inner::Error, inner::ErrorKind);
// Attributes can be added at the end of the declaration.
Feature(feature::Error, feature::Error) #[cfg(feature = "a_feature")];
Feature(feature::Error, feature::ErrorKind) #[cfg(feature = "a_feature")];
}

// Bindings to types implementing std::error::Error.
Expand Down