Skip to content

Commit d1cb6d4

Browse files
authored
fix the "std import" section of the 0.79 changelog (#892)
a Nushell user has reported issues in the changelog about the standard library, here is a quick fix 👌
1 parent 4ec1a6f commit d1cb6d4

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

blog/2023-04-25-nushell_0_79.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,14 @@ i'm just gonna give some hints and links in this release note, leaving the rest
7676
- the library can be used and tested with
7777

7878
```nushell
79-
use std # will load the whole library under the `std` namespace
79+
use std # will load the whole library under the `std` namespace
80+
use std * # - - - - - without the `std` prefix
8081
```
8182

8283
or use direct imports, such as
8384

8485
```nushell
85-
use std dirs
86+
use std 'dirs show'
8687
```
8788

8889
- one can follow the activity of the library in the [roadmap](https://github.com/nushell/nushell/issues/8450)

0 commit comments

Comments
 (0)