[Lldb-commits] [lldb] r341233 - Fix a comment to use the correct variable name.

Frederic Riss via lldb-commits lldb-commits at lists.llvm.org
Fri Aug 31 11:14:53 PDT 2018


Author: friss
Date: Fri Aug 31 11:14:53 2018
New Revision: 341233

URL: http://llvm.org/viewvc/llvm-project?rev=341233&view=rev
Log:
Fix a comment to use the correct variable name.

Modified:
    lldb/trunk/include/lldb/API/SBProcess.h

Modified: lldb/trunk/include/lldb/API/SBProcess.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBProcess.h?rev=341233&r1=341232&r2=341233&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBProcess.h (original)
+++ lldb/trunk/include/lldb/API/SBProcess.h Fri Aug 31 11:14:53 2018
@@ -320,9 +320,9 @@ public:
   ///
   /// @param[in] image_spec
   ///     The name of the shared library that you want to load.  
-  ///     If local_spec is a relative path, the relative path will be
+  ///     If image_spec is a relative path, the relative path will be
   ///     appended to the search paths.
-  ///     If the local_spec is an absolute path, just the basename is used.
+  ///     If the image_spec is an absolute path, just the basename is used.
   ///
   /// @param[in] paths
   ///     A list of paths to search for the library whose basename is 




More information about the lldb-commits mailing list