Skip to content

Commit

Permalink
Fix broken link (#1140)
Browse files Browse the repository at this point in the history
Fix for link to `localhost`
  • Loading branch information
MarikaChlebowska authored Nov 11, 2023
1 parent 8fbadc1 commit c87a8d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion book/pipelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ For instance, the above example sets the `$env.config.table.mode` configuration
> do { $env.config.table.mode = none; ls } | table
```

Because Nushell `$env` variables are [scoped](http://localhost:8080/book/environment.html#scoping), this means that the `table` command in the example is not affected by the
Because Nushell `$env` variables are [scoped](https://www.nushell.sh/book/environment.html#scoping), this means that the `table` command in the example is not affected by the
environment modification inside the `do` block and the data will not be shown with the applied configuration.

When displaying data early is desired, it is possible to explicitly apply `| table` inside the scope, or use the `print` command.
Expand Down

0 comments on commit c87a8d2

Please sign in to comment.