From 7912b0fd371f0716a33ed0bcbd05a699d84c1d9c Mon Sep 17 00:00:00 2001 From: Gabe Venberg Date: Wed, 13 Mar 2024 13:30:15 -0500 Subject: [PATCH] fixed typos. --- content/posts/nushell.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/posts/nushell.md b/content/posts/nushell.md index 4a87994..19a2480 100644 --- a/content/posts/nushell.md +++ b/content/posts/nushell.md @@ -262,7 +262,7 @@ Input/output types: (the input/output table at the bottom has to do with how the command is used in a pipeline, and is covered in more detail in the -[book](https://www.nushell.sh/book/command_signature.html) +[book](https://www.nushell.sh/book/command_signature.html)) This addition of easy argument parsing makes it incredibly convenient to add command line arguments to your scripts and functions, something that is anything @@ -359,7 +359,7 @@ def recently-modified [ {{}} > use recently-modified.sh -> recently-modifiued --cutoff '2 weeks ago' ./ +> recently-modified --cutoff '2 weeks ago' ./ {{}} Its certainly not the most ergonomic, but seems to be the best way at the moment