diff options
| author | Brian Anderson <banderson@mozilla.com> | 2014-07-29 23:19:36 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-07-31 07:30:17 -0700 |
| commit | 4562803a3d4f5a752d3c373c7bde6abd36ec3e30 (patch) | |
| tree | 6aae9d5d8663acbd31adad9f6c34fed7aa68ef22 | |
| parent | 678814aafaa117724fa9e829fc30642c315cea27 (diff) | |
| download | rust-4562803a3d4f5a752d3c373c7bde6abd36ec3e30.tar.gz rust-4562803a3d4f5a752d3c373c7bde6abd36ec3e30.zip | |
core: Fix failure doc comment
| -rw-r--r-- | src/libcore/failure.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/failure.rs b/src/libcore/failure.rs index 543d3f2cbbb..f5cfa2611d5 100644 --- a/src/libcore/failure.rs +++ b/src/libcore/failure.rs @@ -16,7 +16,7 @@ //! interface for failure is: //! //! ```ignore -//! fn begin_unwind(fmt: &fmt::Arguments, file: &str, line: uint) -> !; +//! fn begin_unwind(fmt: &fmt::Arguments, &(&'static str, uint)) -> !; //! ``` //! //! This definition allows for failing with any general message, but it does not |
