You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -407,7 +407,7 @@ but it is impossible to do `let env = 123`
407
407
However, up until now and the work of [@KAAtheWiseGit](https://github.com/KAAtheWiseGit)
408
408
in [#11169](https://github.com/nushell/nushell/pull/11169) and
409
409
[#11228](https://github.com/nushell/nushell/pull/11228), it was possible to redefined these variables
410
-
incommand definition, the code would parse and run but you would get the internal values instead of
410
+
incommand definition: the code would parse and run, but you would get the internal values instead of
411
411
the ones passed to the command, which is a nasty silent bug!
412
412
From now on, the following will give an error
413
413
```nushell
@@ -421,7 +421,7 @@ def baz [in] { print $in }
421
421
```
422
422
423
423
Also, because `$nu` and `$env` don't have spans by construction, i.e. they are not defined in any
424
-
script where a span would make sense but rather internally when Nushell starts, accessing there
424
+
script where a span would make sense but rather internally when Nushell starts, accessing their
425
425
`metadata` does not make sense. This release makes the error more helpful:
426
426
```nushell
427
427
metadata $env
@@ -442,7 +442,7 @@ With [#10941](https://github.com/nushell/nushell/pull/10941), completions should
442
442
this release :partying:
443
443
444
444
## Our set of commands is evolving [[toc](#table-of-content)]
445
-
As usual, new release rhyms with changes to commands!
445
+
As usual, new release rhymes with changes to commands!
446
446
447
447
### New commands [[toc](#table-of-content)]
448
448
- `is-terminal` by [@drbrain](https://github.com/drbrain) in [#10970](https://github.com/nushell/nushell/pull/10970)
@@ -479,7 +479,7 @@ Input/output types:
479
479
```
480
480
481
481
### Changes to existing commands [[toc](#table-of-content)]
482
-
- thanks to [@KAAtheWiseGit](https://github.com/KAAtheWiseGit) in [#11195](https://github.com/nushell/nushell/pull/11195), `inpust list` will accept more input/output types
482
+
- thanks to [@KAAtheWiseGit](https://github.com/KAAtheWiseGit) in [#11195](https://github.com/nushell/nushell/pull/11195), `input list` will accept more input/output types
483
483
- the `list<string> -> string` I/O pair has been added to the `last` command by [@amtoine](https://github.com/amtoine) in [#11137](https://github.com/nushell/nushell/pull/11137)
484
484
- with the work of [@IanManske](https://github.com/IanManske) in [#11258](https://github.com/nushell/nushell/pull/11258), `insert`, `update` and `upsert` should now work more consistently with `list`s, e.g.
0 commit comments