1
Fork 0

Rollup merge of #37031 - fitzgen:typo-in-gcc-rs-comment, r=alexcrichton

Fix a typo in a comment describing gcc.rs's eh_frame_registry module

s/reigster/register/

r? @alexcrichton
This commit is contained in:
Manish Goregaokar 2016-10-08 16:52:43 +05:30 committed by GitHub
commit c1a19b8481

View file

@ -287,7 +287,7 @@ unsafe extern "C" fn rust_eh_unwind_resume(panic_ctx: *mut u8) -> ! {
// to actively register their unwind info sections via unwinder API.
//
// This module defines two symbols which are referenced and called from
// rsbegin.rs to reigster our information with the GCC runtime. The
// rsbegin.rs to register our information with the GCC runtime. The
// implementation of stack unwinding is (for now) deferred to libgcc_eh, however
// Rust crates use these Rust-specific entry points to avoid potential clashes
// with any GCC runtime.