Description
The subprocess execution documentation in Docs/wfldocs/WFL-io.md contains a syntax inconsistency. The kill process command example lacks the wait for prefix, while all other async subprocess operations in the same section consistently use it.
Location: Line 389 in Docs/wfldocs/WFL-io.md
Current syntax: kill process long_task
Expected pattern: All other async I/O operations use wait for prefix
Context
This inconsistency was identified during review of PR #185, which introduces subprocess execution capabilities to WFL.
Related PR: #185
Review comment: #185 (comment)
Reported by: @logbie
Task
Review and update the documentation to ensure consistent async syntax patterns across all subprocess operations, aligning with WFL's established wait for convention for async I/O operations.
Description
The subprocess execution documentation in
Docs/wfldocs/WFL-io.mdcontains a syntax inconsistency. Thekill processcommand example lacks thewait forprefix, while all other async subprocess operations in the same section consistently use it.Location: Line 389 in
Docs/wfldocs/WFL-io.mdCurrent syntax:
kill process long_taskExpected pattern: All other async I/O operations use
wait forprefixContext
This inconsistency was identified during review of PR #185, which introduces subprocess execution capabilities to WFL.
Related PR: #185
Review comment: #185 (comment)
Reported by: @logbie
Task
Review and update the documentation to ensure consistent async syntax patterns across all subprocess operations, aligning with WFL's established
wait forconvention for async I/O operations.