diff --git a/lib/src/config.dart b/lib/src/config.dart index c31fbb8..f0a06ed 100644 --- a/lib/src/config.dart +++ b/lib/src/config.dart @@ -286,7 +286,7 @@ class ScriptRunnerShellConfig { } } - /// The current OS of the system, of those supported by [ScriptRunner] + /// The current OS of the system, of those supported by [RunnableScript] OS get os { if (Platform.isWindows) { return OS.windows; diff --git a/lib/src/runnable_script.dart b/lib/src/runnable_script.dart index a50b6cd..78a3865 100644 --- a/lib/src/runnable_script.dart +++ b/lib/src/runnable_script.dart @@ -36,15 +36,15 @@ class RunnableScript { /// The script loader pre-loads these as temporary aliases to allow combined scripts to be run. List preloadScripts = []; - /// When set to [false], the command will not print "$ ..." before running the command. + /// When set to `false`, the command will not print "$ ..." before running the command. /// This is useful for using the output in other scripts. /// - /// Defaults to [true]. + /// Defaults to `true`. final bool displayCmd; - /// When set to [true], the command will end with a newline. This is useful for using the output in other scripts. + /// When set to `true`, the command will end with a newline. This is useful for using the output in other scripts. /// - /// Defaults to [false]. + /// Defaults to `false`. final bool appendNewline; FileSystem _fileSystem;