diff options
| author | Artem <artemciy@gmail.com> | 2014-11-12 11:18:30 +0300 |
|---|---|---|
| committer | Artem <artemciy@gmail.com> | 2014-11-12 11:18:30 +0300 |
| commit | 7b28ba07781c0c769c393dbb002367ec1f972b4b (patch) | |
| tree | bc4a893bfdfed4708901b18491d0fe97c5bcd681 | |
| parent | 4d5e7f32492a5cc18f806fa96c3d863fa95fe688 (diff) | |
| download | rust-7b28ba07781c0c769c393dbb002367ec1f972b4b.tar.gz rust-7b28ba07781c0c769c393dbb002367ec1f972b4b.zip | |
Results aren't panics
A typo about Results being panics crawled in. Fixing it.
| -rw-r--r-- | src/libcore/result.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/result.rs b/src/libcore/result.rs index c4cb2987241..69802aef4c2 100644 --- a/src/libcore/result.rs +++ b/src/libcore/result.rs @@ -267,7 +267,7 @@ //! a bug. //! //! A module that instead returns `Results` is alerting the caller -//! that panics are possible, and providing precise control over how +//! that failure is possible, and providing precise control over how //! it is handled. //! //! Furthermore, panics may not be recoverable at all, depending on |
