Skip to content

Commit d26d4b5

Browse files
authored
Update debugging.rst (#201)
grammar fixes
1 parent 69d9086 commit d26d4b5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

debugging.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ Debugging
22
---------
33

44
Debugging is also something which once mastered can greatly enhance your
5-
bug hunting skills. Most of the newcomers neglect the importance of the
5+
bug hunting skills. Most newcomers neglect the importance of the
66
Python debugger (``pdb``). In this section I am going to tell you only a
77
few important commands. You can learn more about it from the official
88
documentation.
99

10-
**Running from commandline**
10+
**Running from the command line**
1111

12-
You can run a script from the commandline using the Python debugger.
12+
You can run a script from the command line using the Python debugger.
1313
Here is an example:
1414

1515
.. code:: python
@@ -61,4 +61,4 @@ official documentation and learn more about it.
6161

6262
**Note:**
6363

64-
It might seem unintuitive to use `pdb.set_trace()` if you are new to this. Fortunately, if you are using Python 3.7+ then you can simply use the `breakpoint()` [built-in function](https://docs.python.org/3/library/functions.html#breakpoint). It automatically imports `pdb` and calls `pdb.set_trace()`.
64+
It might seem unintuitive to use `pdb.set_trace()` if you are new to this. Fortunately, if you are using Python 3.7+ then you can simply use the `breakpoint()` [built-in function](https://docs.python.org/3/library/functions.html#breakpoint). It automatically imports `pdb` and calls `pdb.set_trace()`.

0 commit comments

Comments
 (0)