Skip to content

Commit afc86c2

Browse files
authored
Fix broken link from Custom Commands update (#1570)
1 parent e5d2688 commit afc86c2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

book/programming_in_nu.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Just like most programming languages allow you to define functions, Nushell uses
88
From other shells you might be used to [aliases](aliases.md).
99
Nushell's aliases work in a similar way and are a part of the programming language, not just a shell feature.
1010

11-
Common operations can, such as addition or regex search, be done with [operators](operators.md).
12-
Not all operations are supported for all data types and Nushell will make sure to let you know.
11+
Common operations, such as addition or regex search, can be done with [operators](operators.md).
12+
Not all operations are supported for all data types, and Nushell will make sure to let you know when there is a mismatch.
1313

1414
You can store intermediate results to [variables](variables.md).
1515
Variables can be immutable, mutable, or a parse-time constant.
@@ -26,6 +26,4 @@ Modules let you define a public interface vs. private commands and you can impor
2626
By defining an overlay, you bring in module's definitions into its own swappable "layer" that gets applied on top of other overlays.
2727
This enables features like activating virtual environments or overriding sets of default commands with custom variants.
2828

29-
The help message of some built-in commands shows a [signature](command_signature.md). You can take a look at it to get general rules how the command can be used.
30-
3129
The standard library also has a [testing framework](testing.md) if you want to prove your reusable code works perfectly.

0 commit comments

Comments
 (0)