[Lldb-commits] [lldb] r357980 - Add missing space between \btrue

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue Apr 9 01:34:07 PDT 2019


Author: jdevlieghere
Date: Tue Apr  9 01:34:07 2019
New Revision: 357980

URL: http://llvm.org/viewvc/llvm-project?rev=357980&view=rev
Log:
Add missing space between \btrue

There was a space missing in some the documentation for
lldb::BreakpointsWriteToFile.

This fixes the following doxygen error when building the lldb-cpp-doc
target:

  llvm-project/lldb/include/lldb/API/SBTarget.h:775 warning: Found
  unknown command `\btrue'

Patch by: Konrad Kleine

Differential revision: https://reviews.llvm.org/D60442

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

Modified: lldb/trunk/include/lldb/API/SBTarget.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/API/SBTarget.h?rev=357980&r1=357979&r2=357980&view=diff
==============================================================================
--- lldb/trunk/include/lldb/API/SBTarget.h (original)
+++ lldb/trunk/include/lldb/API/SBTarget.h Tue Apr  9 01:34:07 2019
@@ -772,7 +772,7 @@ public:
   ///    Only write breakpoints from this list.
   ///
   /// \param[in] append
-  ///    If \btrue, append the breakpoints in bkpt_list to the others
+  ///    If \b true, append the breakpoints in bkpt_list to the others
   ///    serialized in dest_file.  If dest_file doesn't exist, then a new
   ///    file will be created and the breakpoints in bkpt_list written to it.
   ///




More information about the lldb-commits mailing list