Add missing hash marks

Fixes #550

I can no longer reproduce the issue
This commit is contained in:
Aaron Hill 2020-01-02 22:58:39 -05:00 committed by Who? Me?!
parent 7d83201931
commit 25d98338fd
1 changed files with 3 additions and 3 deletions

View File

@ -36,9 +36,9 @@ Actually resolving this goes through several layers of indirection:
```rust ```rust
/// Entry point of panic from the libcore crate. /// Entry point of panic from the libcore crate.
[cfg(not(test))] #[cfg(not(test))]
[panic_handler] #[panic_handler]
[unwind(allowed)] #[unwind(allowed)]
pub fn begin_panic_handler(info: &PanicInfo<'_>) -> ! { pub fn begin_panic_handler(info: &PanicInfo<'_>) -> ! {
... ...
} }