]> git.lizzy.rs Git - rust.git/commitdiff
Fix a typo in a comment describing gcc.rs's eh_frame_registry module
authorNick Fitzgerald <fitzgen@gmail.com>
Fri, 7 Oct 2016 22:00:48 +0000 (15:00 -0700)
committerNick Fitzgerald <fitzgen@gmail.com>
Fri, 7 Oct 2016 22:00:48 +0000 (15:00 -0700)
s/reigster/register/

src/libpanic_unwind/gcc.rs

index bd0c2f5126d133c4965963dfb450c80bbcd314ea..4d97df067dcd9d1c07a020a5f79c665d41c69fa3 100644 (file)
@@ -284,7 +284,7 @@ unsafe fn find_eh_action(context: *mut uw::_Unwind_Context) -> EHAction {
 // 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.