summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/inputs.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/inputs.rs b/examples/inputs.rs
index be4e9e3b..27064e49 100644
--- a/examples/inputs.rs
+++ b/examples/inputs.rs
@@ -9,9 +9,9 @@ fn main() {
.line_numbers(true)
.inputs(vec![
Input::from_bytes(b"echo 'Hello World!'")
- .name("embedded.sh")
- .title("An embedded shell script.")
- .kind("Embedded"),
+ .name("embedded.sh") // Dummy name provided to detect the syntax.
+ .kind("Embedded")
+ .title("An embedded shell script."),
Input::from_stdin().title("Standard Input").kind("FD"),
])
.print()