diff options
| author | Ivan Ivaschenko <defuz.net@gmail.com> | 2015-11-06 13:52:17 +0200 |
|---|---|---|
| committer | Ivan Ivaschenko <defuz.net@gmail.com> | 2015-11-06 13:52:17 +0200 |
| commit | 1ebdb734aaa7fcfdbf5e80e1006218ee5e3514cd (patch) | |
| tree | 826dd5c12f5ba65d03aa8e753d7f5a35ebc436ac /src | |
| parent | 0ccd883e7f50c45c8589ea8ae0b4b535daeb7f3a (diff) | |
| download | rust-1ebdb734aaa7fcfdbf5e80e1006218ee5e3514cd.tar.gz rust-1ebdb734aaa7fcfdbf5e80e1006218ee5e3514cd.zip | |
Opps, fix incorrect call
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/trpl/error-handling.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/error-handling.md b/src/doc/trpl/error-handling.md index 9ee9cf6e1e4..68671cef707 100644 --- a/src/doc/trpl/error-handling.md +++ b/src/doc/trpl/error-handling.md @@ -1137,7 +1137,7 @@ impl error::Error for CliError { // implementations. match *self { CliError::Io(ref err) => err.description(), - CliError::Parse(ref err) => err.description(err), + CliError::Parse(ref err) => err.description(), } } |
