about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorAaron Hill <aa1ronham@gmail.com>2019-12-02 13:03:27 -0500
committerWho? Me?! <mark-i-m@users.noreply.github.com>2020-01-02 21:54:14 -0600
commit1b0297fe0e267e68f4f8e391add94e852d468d8d (patch)
tree9df9efa3deffc99ed0bfeb8629bb766af137ea4a /src/doc/rustc-dev-guide
parent33cd0d0c9b0de1e4c4a6d1e1d6e2a8baf7c4ad58 (diff)
downloadrust-1b0297fe0e267e68f4f8e391add94e852d468d8d.tar.gz
rust-1b0297fe0e267e68f4f8e391add94e852d468d8d.zip
Fix typo
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/panic-implementation.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc-dev-guide/src/panic-implementation.md b/src/doc/rustc-dev-guide/src/panic-implementation.md
index 41338ce0df4..7de4bc0a2e4 100644
--- a/src/doc/rustc-dev-guide/src/panic-implementation.md
+++ b/src/doc/rustc-dev-guide/src/panic-implementation.md
@@ -3,7 +3,7 @@
 #### Step 1: Invocation of the `panic!` macro.
 
 There are actually two panic macros - one defined in `libcore`, and one defined in `libstd`.
-This is due to the fact that code in `libcore` can panic. `libcore` is built before `libsd`,
+This is due to the fact that code in `libcore` can panic. `libcore` is built before `libstd`,
 but we want panics to use the same machinery at runtime, whether they originate in `libcore` or `libstd`.
 
 ##### libcore definition of panic!