From 808a265d53f346d5c9e2deddbd9585aec8ff767c Mon Sep 17 00:00:00 2001 From: Wind Date: Tue, 9 Jul 2024 09:02:30 +0800 Subject: [PATCH] Update crates/nu-parser/src/lex.rs Co-authored-by: Darren Schroeder <343840+fdncred@users.noreply.github.com> --- crates/nu-parser/src/lex.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-parser/src/lex.rs b/crates/nu-parser/src/lex.rs index fb67e5b744..9b52467ef4 100644 --- a/crates/nu-parser/src/lex.rs +++ b/crates/nu-parser/src/lex.rs @@ -653,7 +653,7 @@ fn try_lex_special_piped_item( return ( None, Some(ParseError::Expected( - "`|`. Redirection stdout to pipe is the same as piping directly.", + "`|`. Redirecting stdout to a pipe is the same as normal piping.", Span::new(span_offset + offset, span_offset + offset + o_pipe_len), )), );