Skip to content

Commit bfcd513

Browse files
committed
clarify standard IO streams
1 parent 614c6f5 commit bfcd513

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

invocation.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -116,23 +116,23 @@ not perform computation on the contents.
116116
* `runtime.tmpdirSize`: reserved storage space available in the designated temporary directory
117117

118118
For `cores`, `ram`, `outdirSize` and `tmpdirSize`, if an implementation can't
119-
provide the actual number of reserved cores during the expression evaluation time,
119+
provide the actual number of reserved resources during the expression evaluation time,
120120
it should report back the minimal requested amount.
121121

122122
See [ResourceRequirement](#ResourceRequirement) for details on how to
123123
describe the hardware resources required by a tool.
124124

125-
The standard input stream and standard output stream may be redirected as
126-
described in the `stdin` and `stdout` fields.
125+
The standard input stream, the standard output stream, and/or the standard error
126+
stream may be redirected as described in the [`stdin`](#stdin),
127+
[`stdout`](#stdout), and [`stderr`](#stderr) fields.
127128

128129
## Execution
129130

130131
Once the command line is built and the runtime environment is created, the
131132
actual tool is executed.
132133

133-
The standard error stream and standard output stream (unless redirected by
134-
setting `stdout` or `stderr`) may be captured by platform logging facilities
135-
for storage and reporting.
134+
The standard error stream and standard output stream may be captured by
135+
platform logging facilities for storage and reporting.
136136

137137
Tools may be multithreaded or spawn child processes; however, when the
138138
parent process exits, the tool is considered finished regardless of whether

0 commit comments

Comments
 (0)