tokenise_commands: use @example

This commit is contained in:
Starbeamrainbowlabs 2024-10-16 01:00:01 +01:00
parent 9101d32bd5
commit fbb3d5096c
No known key found for this signature in database
GPG Key ID: 1BE5172E637709C2

@ -94,11 +94,11 @@ end
-- Also supports arbitrarily nested and complex curly braces { } for grouping
-- commands together that would normally be split apart.
--
-- Simple example:
-- @example Simple example
-- INPUT: //1 //2 //outset 25 //fixlight
-- OUTPUT: { "//1", "//2", "//outset 25", "//fixlight" }
--
-- Example with curly braces:
-- @example Example with curly braces
-- INPUT: //1 //2 //outset 50 {//many 5 //multi //fixlight //clearcut}
-- OUTPUT: { "//1", "//2", "//outset 50", "//many 5 //multi //fixlight //clearcut"}
--