Remove extraneous brackets from abort documentation

As per #29370
This commit is contained in:
Pirh 2017-09-27 21:13:07 +01:00
parent 1fd3a42c62
commit 6dfa45d2ed

View File

@ -1142,7 +1142,7 @@ pub fn exit(code: i32) -> ! {
/// }
/// ```
///
/// The [`abort`] function terminates the process, so the destructor will not
/// The `abort` function terminates the process, so the destructor will not
/// get run on the example below:
///
/// ```no_run