From 601bff4079673f8814bf51cc048ff33857b0c54f Mon Sep 17 00:00:00 2001 From: Axel Sorenson Date: Wed, 11 Jun 2025 04:48:37 -0700 Subject: [PATCH] Fix broken link in control_flow.md This currently sends you to "https://www.nushell.sh/book/book/thinking_in_nu.html" instead of "https://www.nushell.sh/book/thinking_in_nu.html". --- book/control_flow.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/control_flow.md b/book/control_flow.md index 26579a5c274..c20a41d4ba1 100644 --- a/book/control_flow.md +++ b/book/control_flow.md @@ -156,7 +156,7 @@ $result # => ╰───┴───╯ ``` -While it may be tempting to use loops if you're familiar with them in other languages, it is considered more in the [Nushell-style](book/thinking_in_nu.html) (idiomatic) to use commands that apply closures when you can solve a problem either way. The reason for this is because of a pretty big downside with using loops. +While it may be tempting to use loops if you're familiar with them in other languages, it is considered more in the [Nushell-style](/book/thinking_in_nu.html) (idiomatic) to use commands that apply closures when you can solve a problem either way. The reason for this is because of a pretty big downside with using loops. #### Loop Disadvantages