This commit is contained in:
Aaron Hill 2019-12-02 13:03:27 -05:00 committed by Who? Me?!
parent 90af55903a
commit 25c226cfa8
1 changed files with 1 additions and 1 deletions

View File

@ -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!