[Lldb-commits] [lldb] r187148 - Correct typo in comments

Ed Maste emaste at freebsd.org
Thu Jul 25 12:05:00 PDT 2013


Author: emaste
Date: Thu Jul 25 14:05:00 2013
New Revision: 187148

URL: http://llvm.org/viewvc/llvm-project?rev=187148&view=rev
Log:
Correct typo in comments


Modified:
    lldb/trunk/source/Plugins/Process/elf-core/ProcessElfCore.cpp

Modified: lldb/trunk/source/Plugins/Process/elf-core/ProcessElfCore.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/elf-core/ProcessElfCore.cpp?rev=187148&r1=187147&r2=187148&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/elf-core/ProcessElfCore.cpp (original)
+++ lldb/trunk/source/Plugins/Process/elf-core/ProcessElfCore.cpp Thu Jul 25 14:05:00 2013
@@ -484,7 +484,7 @@ ParseFreeBSDThrMisc(ThreadData *thread_d
 ///    a) Each thread context(2 or more NOTE entries) contained in its own segment (PT_NOTE)
 ///    b) All thread context is stored in a single segment(PT_NOTE).
 ///        This case is little tricker since while parsing we have to find where the
-///        new thread starts. The current implementation marks begining of 
+///        new thread starts. The current implementation marks beginning of 
 ///        new thread when it finds NT_PRSTATUS or NT_PRPSINFO NOTE entry.
 ///    For case (b) there may be either one NT_PRPSINFO per thread, or a single
 ///    one that applies to all threads (depending on the platform type).
@@ -511,7 +511,7 @@ ProcessElfCore::ParseThreadContextsFromN
         ELFNote note = ELFNote();
         note.Parse(segment_data, &offset);
 
-        // Begining of new thread
+        // Beginning of new thread
         if ((note.n_type == NT_PRSTATUS && have_prstatus) ||
             (note.n_type == NT_PRPSINFO && have_prpsinfo))
         {





More information about the lldb-commits mailing list