Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Corrections on punctuation only for master. #2853

Merged
merged 1 commit into from
Jan 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions docs/src/gcode/overview.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ command meaning 'move in a straight line at the programmed feed
rate to the programmed end point', and 'X3' provides an argument
value (the value of X should be 3 at the end of the move).
Most LinuxCNC G-code commands start with either G or M (for
General and Miscellaneous). The words for these commands are called 'G
codes' and 'M-codes.' Also common are subroutine codes that begin with 'o-' which are called 'o-codes.'
General and Miscellaneous).
The words for these commands are called 'G-codes' and 'M-codes'.
Also common are subroutine codes that begin with 'o-' which are called 'o-codes'.

The LinuxCNC language has no indicator for the start of a program. The
Interpreter, however, deals with files. A single program may be in a
Expand Down Expand Up @@ -149,11 +150,11 @@ The table includes N and O for completeness, even though, as defined above, line

==== Parameters(((Parameters)))

Parameters are identified with a "#" symbol in front of them. See <<sec:overview-parameters, Parameters Section>> below.
Parameters are identified with a "#" symbol in front of them. See <<sec:overview-parameters,Parameters Section>> below.

==== Subroutine Codes(((Subroutine Codes)))

Also called 'o-codes' these provide program flow control (such as if-else logic and callable subroutines) and are covered fully at the page on <<cha:o-codes,o-Codes>> and also below in <<sub:subroutine-parameters,Subroutine Codes and Parameters.>>
Also called 'o-codes' these provide program flow control (such as if-else logic and callable subroutines) and are covered fully at the page on <<cha:o-codes,o-Codes>> and also below in <<sub:subroutine-parameters,Subroutine Codes and Parameters>>.

NOTE: o-codes are sometimes also called o-words.

Expand Down
Loading