Browse Source

Fix a typo in the docs

cl-test
Tobias Bucher 7 years ago
parent
commit
f4851c1383
  1. 4
      src/lib.rs

4
src/lib.rs

@ -133,12 +133,12 @@ enum ErrorKind {
ToolNotFound,
}
/// Represents an internal error that occurred, with an explaination.
/// Represents an internal error that occurred, with an explanation.
#[derive(Clone, Debug)]
pub struct Error {
/// Describes the kind of error that occurred.
kind: ErrorKind,
/// More explaination of error that occurred.
/// More explanation of error that occurred.
message: String,
}

Loading…
Cancel
Save