Skip to content
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/background_jobs.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Nushell currently has experimental support for thread-based background jobs.
## Spawning Jobs

Jobs can be spawned using [`job spawn`](/commands/docs/job_spawn.md), which receives a closure and starts its execution in a background thread, returning
an unique integer id for the spawned job:
a unique integer id for the spawned job:

```nu
'i am' | save status.txt
Expand Down
4 changes: 2 additions & 2 deletions book/dataframes.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ polars store-ls | select key type columns rows estimated_size
```

::: tip
As of nushell 0.97, `polars open` will open as a lazy dataframe instead of a eager dataframe.
As of nushell 0.97, `polars open` will open as a lazy dataframe instead of an eager dataframe.
To open as an eager dataframe, use the `--eager` flag.
:::

Expand Down Expand Up @@ -1119,7 +1119,7 @@ This list may be outdated. To get the up-to-date command list, see [Dataframe](/
| polars drop-duplicates | dataframe | Drops duplicate values in dataframe. | |
| polars drop-nulls | dataframe | Drops null values in dataframe. | |
| polars dummies | dataframe | Creates a new dataframe with dummy variables. | |
| polars explode | expression, dataframe | Explodes a dataframe or creates a explode expression. | |
| polars explode | expression, dataframe | Explodes a dataframe or creates an explode expression. | |
| polars expr-not | expression | Creates a not expression. | |
| polars fetch | dataframe | Collects the lazyframe to the selected rows. | |
| polars fill-nan | dataframe | Replaces NaN values with the given expression. | |
Expand Down
2 changes: 1 addition & 1 deletion cookbook/modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,4 @@ This kind of overlaying environments can be used to scope more elaborate virtual

Tools like conda or Python virtualenv manage and isolate sets of environment variables.
The [official virtualenv integration](https://github.com/pypa/virtualenv/blob/main/src/virtualenv/activation/nushell/activate.nu) makes use of these concepts.
And our nu_scripts repository has a an [unofficial Conda module](https://github.com/nushell/nu_scripts/tree/main/modules/virtual_environments).
And our nu_scripts repository has an [unofficial Conda module](https://github.com/nushell/nu_scripts/tree/main/modules/virtual_environments).
2 changes: 1 addition & 1 deletion cookbook/ssh_agent.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ keychain --eval --quiet <your ssh keys, eg. id_ed25519>

## Non-nushell workarounds

However, the commonly recommended approach involves running an ssh-agent so it establishes an user-wide socket for processes to connect to.
However, the commonly recommended approach involves running an ssh-agent so it establishes a user-wide socket for processes to connect to.

Here are two common ways to achieve this.

Expand Down