about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorPirh <pirh.badger@gmail.com>2017-09-27 21:13:07 +0100
committerPirh <pirh.badger@gmail.com>2017-09-27 21:13:07 +0100
commit6dfa45d2ed83ecf25bf457201a3d482be42856ca (patch)
tree43fa7580203c168cb7873d5bc36662861dba5d79 /src/libstd
parent1fd3a42c624faf91e9402942419ec409699fb94a (diff)
downloadrust-6dfa45d2ed83ecf25bf457201a3d482be42856ca.tar.gz
rust-6dfa45d2ed83ecf25bf457201a3d482be42856ca.zip
Remove extraneous brackets from abort documentation
As per #29370
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/process.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/process.rs b/src/libstd/process.rs
index 1869ad3ed70..d1cb90826f9 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -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