Browse Source
Merge pull request #264 from tbu-/pr_doc_typo
Fix a typo in the docs
cl-test
Alex Crichton
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
src/lib.rs
|
@ -133,12 +133,12 @@ enum ErrorKind { |
|
|
ToolNotFound, |
|
|
ToolNotFound, |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/// Represents an internal error that occurred, with an explaination.
|
|
|
/// Represents an internal error that occurred, with an explanation.
|
|
|
#[derive(Clone, Debug)] |
|
|
#[derive(Clone, Debug)] |
|
|
pub struct Error { |
|
|
pub struct Error { |
|
|
/// Describes the kind of error that occurred.
|
|
|
/// Describes the kind of error that occurred.
|
|
|
kind: ErrorKind, |
|
|
kind: ErrorKind, |
|
|
/// More explaination of error that occurred.
|
|
|
/// More explanation of error that occurred.
|
|
|
message: String, |
|
|
message: String, |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|