From 951e64888184fffce55399ddafce46a1dc72cf50 Mon Sep 17 00:00:00 2001 From: JR Date: Tue, 10 Sep 2024 22:20:53 +0200 Subject: [PATCH] Fix typo --- runtime/tutor | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/runtime/tutor b/runtime/tutor index 2015e012b..c77e4cd64 100644 --- a/runtime/tutor +++ b/runtime/tutor @@ -1603,13 +1603,13 @@ letters! that is not good grammar. you can fix this. * Shell commands can be run from helix and their output inserted (resp. appended) using :insert-output (resp :append-output), - also aliased as Alt-! (resp !) + also aliased as ! (resp Alt-!) * Selections can be piped to a shell command and their output can overwrite the commmand (resp. be discarded) using :pipe (resp. :pipe-to), also aliased as | (resp. Alt-| ). Remember - that this is piping the selection(s), not providing as - arguments. + that this is piping the selection(s) as the pipe operator would + do in bash, not providing the data as arguments.