diff options
| author | Jonas Smedegaard <dr@jones.dk> | 2025-05-17 18:40:10 +0200 |
|---|---|---|
| committer | Jonas Smedegaard <dr@jones.dk> | 2025-05-17 18:40:10 +0200 |
| commit | 4c93323a09fe9fbbe8c866eaed9022eff66a1ea1 (patch) | |
| tree | e6d8830fa881eaa14a8fa722accdc4d7bf2f6631 | |
| parent | a2b58501f5b72739c07a3766b0f3fd56e3a38c51 (diff) | |
fix PRINTABLES grammar
| -rwxr-xr-x | def_PRINTABLES.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/def_PRINTABLES.py b/def_PRINTABLES.py index d5aed28..e5bb154 100755 --- a/def_PRINTABLES.py +++ b/def_PRINTABLES.py @@ -8,7 +8,7 @@ from railroad import * Diagram( Start("complex"), - OneOrMore("[[:graph:]]+"), + "[[:graph:]]+", End("complex") ).writeStandalone( open(splitext(basename(__file__))[0] + ".svg", "w").write) |
