aboutsummaryrefslogtreecommitdiffstats
path: root/docs/Command_Templates.md
diff options
context:
space:
mode:
authorPaul McGowan <mental405@gmail.com>2022-01-09 21:13:53 -0500
committerGitHub <noreply@github.com>2022-01-09 21:13:53 -0500
commitde366ee85479d9f9bf7f117a881feb8de522265d (patch)
treef0932c2255a8f49d60f6a5fc2252bc981aee1e50 /docs/Command_Templates.md
parent4c8d24ae03eadf3fc5a28efb1209ce810251d02d (diff)
downloadkutter-de366ee85479d9f9bf7f117a881feb8de522265d.tar.gz
kutter-de366ee85479d9f9bf7f117a881feb8de522265d.tar.xz
kutter-de366ee85479d9f9bf7f117a881feb8de522265d.zip
docs: Docs comma culture (#4822)
Many non-English speaking countries use a comma as a decimal separator for printed numbers. This can create some confusion in documentation and config files when not surrounded by contextual clues like parenthesis. Improve documentation by adding spaces to coordinates. Signed-off-by: Paul McGowan <mental450@gmail.com>
Diffstat (limited to 'docs/Command_Templates.md')
-rw-r--r--docs/Command_Templates.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/Command_Templates.md b/docs/Command_Templates.md
index 732ed1a1..7d5b229e 100644
--- a/docs/Command_Templates.md
+++ b/docs/Command_Templates.md
@@ -95,7 +95,7 @@ gcode:
G90
G0 Z15 F300
{% for wipe in range(wipe_count) %}
- {% for coordinate in [(275,4),(235,4)] %}
+ {% for coordinate in [(275, 4),(235, 4)] %}
G0 X{coordinate[0]} Y{coordinate[1] + 0.25 * wipe} Z9.7 F12000
{% endfor %}
{% endfor %}