Skip to content

Fix broken links #1366

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion book/environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ _(Important! The environment conversion string -> value happens **after** the en

## Removing environment variables

You can remove an environment variable only if it was set in the current scope via [`hide-env`](/commands/docs/hide_env.md):
You can remove an environment variable only if it was set in the current scope via [`hide-env`](/commands/docs/hide-env.md):

```nu
> $env.FOO = 'BAR'
Expand Down
1 change: 0 additions & 1 deletion book/loading_data.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,6 @@ There are other commands you can use to work with strings:

- [`str`](/commands/docs/str.md)
- [`lines`](/commands/docs/lines.md)
- [`size`](/commands/docs/size.md)

There is also a set of helper commands we can call if we know the data has a structure that Nu should be able to understand. For example, let's open a Rust lock file:

Expand Down
4 changes: 2 additions & 2 deletions book/overlays.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ In the following sections, the `>` prompt will be preceded by the name of the la

## Removing an Overlay

If you don't need the overlay definitions anymore, call [`overlay hide`](/commands/docs/overlay_remove.md):
If you don't need the overlay definitions anymore, call [`overlay hide`](/commands/docs/overlay_hide.md):

```nu
(spam)> overlay hide spam
Expand All @@ -94,7 +94,7 @@ foo
───┴──────
```

The last way to remove an overlay is to call [`overlay hide`](/commands/docs/overlay_remove.md) without an argument which will remove the last active overlay.
The last way to remove an overlay is to call [`overlay hide`](/commands/docs/overlay_hide.md) without an argument which will remove the last active overlay.

## Overlays Are Recordable

Expand Down
4 changes: 2 additions & 2 deletions book/table_of_contents.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

- [Installation](installation.md) - Installing Nushell
- [Introduction](README.md) - Getting started
- [Thinking in Nushell](thinking_in_nushell.md) - Thinking in Nushell
- [Thinking in Nu](thinking_in_nu.md) - Thinking in Nushell
- [Moving around](moving_around.md) - Moving around in Nushell
- [Types of data](types_of_data.md) - Types of data in Nushell
- [Loading data](loading_data.md) - Loading data and using it
- [Strings](working_with_strings.md) - Strings, escape characters, and string interpolation
- [Working with lists](working_with_lists.md) - Working with Nu lists
- [Working with tables](working_with_tables.md) - Working with Nu tables
- [Pipeline](pipeline.md) - How the pipeline works
- [Pipelines](pipelines.md) - How the pipeline works
- [Configuration](configuration.md) - How to configure Nushell
- [3rd Party Prompts](3rdpartyprompts.md) - How to configure 3rd party prompts
- [Custom commands](custom_commands.md) - Creating your own commands
Expand Down