the return False in breakpoint actions should also be mentioned on the website



git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@182060 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/www/python-reference.html b/www/python-reference.html
index 2a9c529..460796f 100755
--- a/www/python-reference.html
+++ b/www/python-reference.html
@@ -271,6 +271,10 @@
                         </td>

                     </tr>

                     </table>

+             <p>Optionally, a Python breakpoint command can return a value. Returning False tells LLDB that you do not want to stop at the breakpoint.

+                Any other return value (including None or leaving out the return statement altogether) is akin to telling LLDB to actually stop at the breakpoint.

+                This can be useful in situations where a breakpoint only needs to stop the process when certain conditions are met, and you do not want to inspect the

+                program state manually at every stop and then continue.

              <p>An example will show how simple it is to write some python code and attach it to a breakpoint. 

                 The following example will allow you to track the order in which the functions in a given shared library 

                 are first executed during one run of your program.  This is a simple method to gather an order file which