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

s/reigster/register/
This commit is contained in:
Nick Fitzgerald 2016-10-07 15:00:48 -07:00
parent a23064af5e
commit 75c0d3f657
1 changed files with 1 additions and 1 deletions

View File

@ -284,7 +284,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.