From c98b381ecc54ed7b3805baceb707f01b9b71c94c Mon Sep 17 00:00:00 2001 From: vapniks Date: Sat, 10 May 2025 23:48:34 +0100 Subject: [PATCH] Fix grammar in entry.rst --- doc/readthedocs/debugger/entry.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/readthedocs/debugger/entry.rst b/doc/readthedocs/debugger/entry.rst index aa97ea9c2..e76bd62a6 100644 --- a/doc/readthedocs/debugger/entry.rst +++ b/doc/readthedocs/debugger/entry.rst @@ -38,7 +38,7 @@ Although the debugger tries to set things up to make it look like your program is called, sometimes the differences matter. Also the debugger adds overhead and slows down your program. -Another possibility then is to a function call into your Makefile to call +Another possibility then is to add a function call into your Makefile to call the debugger at the spot you want to stop at. Here is an Example: @@ -87,5 +87,5 @@ Entering the debugger when ``remake`` encounters an error This is done by supplying the ``--post-mortem`` or ``-!`` option on invocation. -Note that in contrast to the situations above. although you can examine state and evaluating expressions, execution +Note that in contrast to the situations above. although you can examine state and evaluate expressions, execution has terminated. Therefore, some of the execution-specific commands are no longer applicable.