Skip to content

Commit cd83d72

Browse files
authored
Merge pull request #165 from vapniks/remake-4-3
Grammar corrections in debugger documentation.
2 parents 3e0a28d + 8cb0a84 commit cd83d72

File tree

18 files changed

+34
-34
lines changed

18 files changed

+34
-34
lines changed

doc/readthedocs/debugger/commands/data/write.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ Write the Commands of a Target (`write`)
88

99
Use this to write the command portion of a target with `remake`s
1010
internal variables expanded. If a filename is given that is the file
11-
where the expanded commands are written. If the filename is `here`
12-
then it is not written to a file but output inside the debugger as
13-
other debugger commands behave. And if no file name is given a
11+
where the expanded commands are written. If the filename is "here"
12+
then it is not written to a file but output inside the debugger like how
13+
other debugger commands behave. If no file name is given, a
1414
filename based on the target name is created.
1515

1616

doc/readthedocs/debugger/commands/files/edit.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ Edit Makefile (`edit`)
66

77
**edit**
88

9-
Edit Make at the current target location.
9+
Edit the Makefile at the current target location.
1010

1111
The editing program of your choice is invoked with the current line set to
1212
the active line in the program.
1313

14-
You can customize to use any editor you want by using the `EDITOR`
14+
You can customize it to use any editor you want by using the `EDITOR`
1515
environment variable. The only restriction is that your editor, .e.g.
1616
`ex`, recognizes the following command-line syntax:
1717

@@ -22,7 +22,7 @@ environment variable. The only restriction is that your editor, .e.g.
2222
The optional numeric value *+number* specifies the number of the
2323
line in the file where to start editing. For example, to configure
2424
`remake` to use the `emacs` editor, you could use these commands
25-
with the in a POSIX shell:
25+
in a POSIX shell:
2626

2727
::
2828

doc/readthedocs/debugger/commands/files/list.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ List Makefile target (`list`)
88

99
**list** *line-number* | **-**
1010

11-
List target dependencies and commands for *target* or *line-number*
11+
List the dependencies and commands for a *target* or *line-number*
1212

1313
Without a target name or line number, use the current target.
1414
A target name of `-` will use the parent target on the target stack.

doc/readthedocs/debugger/commands/files/load.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ Read and Evaluate Makefile (`load`)
88

99
Read in and evaluate GNU Makefile *file-glob*..
1010

11-
*file-glob* should resolve after glob expansion to single GNU
11+
*file-glob* should resolve after glob expansion to a single GNU
1212
Makefile. Target dependencies are updated after reading in the file.
1313

1414
Here are several possible uses of this command.
1515

16-
In debug sessions you can fix the source code and the run `load` to have the code reread in, to test out the fix.
16+
In debug sessions you can fix the source code and then run `load` to have the code reread in, to test out the fix.
1717

18-
Another use is to have pecific "debug"-oriented Makefiles that aren't
19-
normally used, but when you want to trace things are avialable.
18+
Another use is to have specific "debug"-oriented Makefiles that aren't
19+
normally used, but are available when you want to trace things.
2020
This is an aspect of aspect-oriented_ programming
2121

2222
.. _aspect-oriented: https://en.wikipedia.org/wiki/Aspect-oriented_programming

doc/readthedocs/debugger/commands/info.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Information from the Debugged Session (`break`, `files`, `line`, `program`, `rul
88

99
Gets various pieces of information about the program being debugged.
1010

11-
You can give unique prefix of the name of a subcommand to get
11+
You can give a unique prefix of the name of a subcommand to get
1212
information about just that subcommand.
1313

1414
Type `info` for a list of info subcommands and what they do. Type ``help info`` for a summary list of info subcommands.

doc/readthedocs/debugger/commands/info/break.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ List all Breakpoints (`info break`)
88

99
Show status of user-settable breakpoints.
1010

11-
The columns in a line show are as follows:
11+
The columns in the output lines are as follows:
1212

1313
* The \"Num\" column is the breakpoint number which can be used in a `delete` command.
14-
* The \"Disp\" column contains one of \"keep\", \"del\", the disposition of the breakpoint after it gets hit.
15-
* The \"mask\" at which points within the target that we stop
14+
* The \"Disp\" column contains one of \"keep\", \"del\"; the disposition of the breakpoint after it gets hit.
15+
* The \"mask\" column indicates at which points of the breakpoint execution is stopped (0x01=prereq, 0x02=run, 0x04=end, 0x07=all).
1616
* The \"Where\" column indicates where the breakpoint is located.
1717

1818
Example:

doc/readthedocs/debugger/commands/os/cd.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Set the Current Working Directory (`cd`)
88

99
Set the working directory to *dir*.
1010

11-
Changing this changes will the working directory in any subsequent
11+
Changing this changes the working directory for any subsequent
1212
build commands that are invoked.
1313

1414
.. seealso::

doc/readthedocs/debugger/commands/os/pwd.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Print POSIX Working Directory (`pwd`)
66

77
**pwd**
88

9-
Print working directory.
9+
Print the working directory.
1010

11-
By default, this is the working directory for in any commands that run from the build.
11+
By default, this is the working directory for any commands that run from the build.
1212

1313
.. seealso::
1414

doc/readthedocs/debugger/commands/running.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ program execution. You can:
1313
* restart the program
1414
* continue its execution until it would normally terminate or until a
1515
breakpoint is hit
16-
* step exection which is runs for a limited amount of code before stopping
16+
* step exection which runs for a limited amount of code before stopping
1717

1818
.. toctree::
1919
:maxdepth: 1

doc/readthedocs/debugger/commands/running/continue.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Continue executing debugged Makefile until another breakpoint or
1010
stopping point. If a target is given and valid we set a breakpoint at
1111
that target before continuing.
1212

13-
As with the `break` command, the place in a target is in can be
13+
As with the `break` command, the precise stopping place within a target line can be
1414
specified. See :ref:`break <break>` for a list of the meanings of the
1515
target phases.
1616

0 commit comments

Comments
 (0)