Skip to content

Commit db1307a

Browse files
committed
doc: fix
1 parent 06220ba commit db1307a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lib/src/config.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

lib/src/runnable_script.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)