File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ pub use poll_fn::{poll_fn, PollFn};
3232/// This type is needed because:
3333///
3434/// a) Generators cannot implement `for<'a, 'b> Generator<&'a mut Context<'b>>`, so we need to pass
35- /// a raw pointer (see https://github.com/rust-lang/rust/issues/68923).
35+ /// a raw pointer (see < https://github.com/rust-lang/rust/issues/68923> ).
3636/// b) Raw pointers and `NonNull` aren't `Send` or `Sync`, so that would make every single future
3737/// non-Send/Sync as well, and we don't want that.
3838///
Original file line number Diff line number Diff line change 11//! Parsing of GCC-style Language-Specific Data Area (LSDA)
22//! For details see:
3- //! http://refspecs.linuxfoundation.org/LSB_3.0.0/LSB-PDA/LSB-PDA/ehframechpt.html
4- //! http://mentorembedded.github.io/cxx-abi/exceptions.pdf
5- //! http://www.airs.com/blog/archives/460
6- //! http://www.airs.com/blog/archives/464
3+ //! * < http://refspecs.linuxfoundation.org/LSB_3.0.0/LSB-PDA/LSB-PDA/ehframechpt.html>
4+ //! * < http://mentorembedded.github.io/cxx-abi/exceptions.pdf>
5+ //! * < http://www.airs.com/blog/archives/460>
6+ //! * < http://www.airs.com/blog/archives/464>
77//!
88//! A reference implementation may be found in the GCC source tree
99//! (`<root>/libgcc/unwind-c.c` as of this writing).
Original file line number Diff line number Diff line change 44//! "Exception Handling in LLVM" (llvm.org/docs/ExceptionHandling.html) and
55//! documents linked from it.
66//! These are also good reads:
7- //! https://itanium-cxx-abi.github.io/cxx-abi/abi-eh.html
8- //! http://monoinfinito.wordpress.com/series/exception-handling-in-c/
9- //! http://www.airs.com/blog/index.php?s=exception+frames
7+ //! * < https://itanium-cxx-abi.github.io/cxx-abi/abi-eh.html>
8+ //! * < http://monoinfinito.wordpress.com/series/exception-handling-in-c/>
9+ //! * < http://www.airs.com/blog/index.php?s=exception+frames>
1010//!
1111//! ## A brief summary
1212//!
You can’t perform that action at this time.
0 commit comments