doc fixes, allow threads=true with screw specs

This commit is contained in:
Adrian Mariano
2023-02-06 18:31:01 -05:00
parent f9b06bf8f6
commit 2d35733980
3 changed files with 12 additions and 10 deletions

View File

@@ -29,7 +29,7 @@
// then the `c` variable is set only in the scope of the `if` and `else` clauses and is not available later on when you actually
// try to use it. Instead you must use the ternary operator and write:
// ```
/// c = condition ? "red" : "green";
// c = condition ? "red" : "green";
// ```
// The second complication is
// that in OpenSCAD version 2021.01 and earlier, assignments in children were executed before their parent. This means