Skip to content

Commit 546b1fd

Browse files
committed
typo
1 parent dc7a211 commit 546b1fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/Language/ipc.rakudoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ into a variable, but it should be obvious how to adapt this into a loop.
9696
# now pipe the SCSS string into the process as STDIN (remembering to close the pipe)
9797
$proc.in.spurt($scss,:close);
9898
# extract the output or the error
99-
my $error = $_ with $proc.err.slurp(:close);
100-
my $ouput = $_ with $proc.out.slurp(:close);
99+
my $error = $_ with $proc.err.slurp(:close);
100+
my $output = $_ with $proc.out.slurp(:close);
101101

102102
# end loop here
103103
=end code

0 commit comments

Comments
 (0)