File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -286,7 +286,7 @@ class ScriptRunnerShellConfig {
286286 }
287287 }
288288
289- /// The current OS of the system, of those supported by [ScriptRunner ]
289+ /// The current OS of the system, of those supported by [RunnableScript ]
290290 OS get os {
291291 if (Platform .isWindows) {
292292 return OS .windows;
Original file line number Diff line number Diff line change @@ -36,15 +36,15 @@ class RunnableScript {
3636 /// The script loader pre-loads these as temporary aliases to allow combined scripts to be run.
3737 List <RunnableScript > preloadScripts = [];
3838
39- /// When set to [ false] , the command will not print "$ ..." before running the command.
39+ /// When set to ` false` , the command will not print "$ ..." before running the command.
4040 /// This is useful for using the output in other scripts.
4141 ///
42- /// Defaults to [ true] .
42+ /// Defaults to ` true` .
4343 final bool displayCmd;
4444
45- /// When set to [ true] , the command will end with a newline. This is useful for using the output in other scripts.
45+ /// When set to ` true` , the command will end with a newline. This is useful for using the output in other scripts.
4646 ///
47- /// Defaults to [ false] .
47+ /// Defaults to ` false` .
4848 final bool appendNewline;
4949
5050 FileSystem _fileSystem;
You can’t perform that action at this time.
0 commit comments