Skip to content

Commit 623fe0e

Browse files
meatball133BethanyG
authored andcommitted
Spelling fixes
1 parent bac4d3d commit 623fe0e

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

docs/TRACEBACKS.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -207,13 +207,13 @@ print(sum)
207207

208208
Running this code will give you a prompt where you can type in commands.
209209
Write `help` to get a list of commands.
210-
The most common onces are `step` which steps into a function called at that line.
211-
`next` which steps over a function call and move to the next line. `where` which tells you which line you are on.
212-
Some other usefull commands are `whatis <variable>` which tells you the type of a variable and `print(<variable>)` which prints the value of a variable.
210+
The most common ones are `step` which steps into a function called at that line.
211+
`next` steps over a function call and move to the next line. `where` tells you which line you are on.
212+
Some other useful commands are `whatis <variable>` which tells you the type of a variable and `print(<variable>)` which prints the value of a variable.
213213
You can also just use `<variable>` to print the value of a variable.
214214
Another command is `jump <line number>` which jumps to a specific line number.
215215

216-
Here are an example on how to use the debugger based on the code earlier:
216+
Here is an example of how to use the debugger based on the code earlier:
217217

218218
```python
219219
>>> python pdb.py
@@ -238,14 +238,14 @@ Here are an example on how to use the debugger based on the code earlier:
238238
... (Pdb)
239239
```
240240

241-
Breakpoints is setup by `break <filename>:<line number> <condition>` where condition is an optional condition that has to be true for the breakpoint to be hit.
241+
Breakpoints are set up by `break <filename>:<line number> <condition>` where the condition is an optional condition that has to be true for the breakpoint to be hit.
242242
You can simply write `break` to get a list of the breakpoints you have set.
243243
To disable a breakpoint you can write `disable <breakpoint number>`.
244244
To enable a breakpoint you can write `enable <breakpoint number>`.
245245
To delete a breakpoint you can write `clear <breakpoint number>`.
246246
To continue execution you can write `continue` or `c`. To exit the debugger you can write `quit` or `q`.
247247

248-
Here are an example on how to use the debugger based on the code earlier:
248+
Here is an example of how to use the debugger based on the code earlier:
249249

250250
```python
251251
>>> python pdb.py

0 commit comments

Comments
 (0)