Skip to content

Commit 4d78258

Browse files
authored
Fix various spelling/grammar issues in release notes for 0.88.0 (#1175)
1 parent e8d49b9 commit 4d78258

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

blog/2023-12-12-nushell_0_88_0.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -240,14 +240,14 @@ def foo [--switch] {
240240
Once again, [@WindSoilder](https://github.com/WindSoilder) has been working on the redirection
241241
system of Nushell, fixing a bug and adding a new very nice feature:
242242
- [#10851](https://github.com/nushell/nushell/pull/10851): one pipeline output stream can be
243-
redirected and the other one used as input to the rest of the pipe
243+
redirected and the other one used as input to the rest of the pipe.
244244
Given the following Bash script called `foo.sh` that outputs both to _stdout_ and _stderr_
245245
```sh
246246
echo aaaaa
247247
echo bbb 1>&2
248248
echo cc
249249
```
250-
it is now possible to run the following command, redirecting `bbb` to the a file and the rest
250+
it is now possible to run the following command, redirecting `bbb` to a file and the rest
251251
to the `lines | each { ... }` part of the pipeline:
252252
```nushell
253253
bash test.sh err> err.txt | lines | each { str length}
@@ -370,7 +370,7 @@ to address two major bugs to two quite important filesystem commands: `rm` and `
370370
Below are some details about these two bug fixes:
371371
- [@IanManske](https://github.com/IanManske) fixed `rm` in
372372
[#11064](https://github.com/nushell/nushell/pull/11064) which has
373-
[trouble to remove files after a `cd`](https://github.com/nushell/nushell/issues/11061)
373+
[trouble removing files after a `cd`](https://github.com/nushell/nushell/issues/11061)
374374
- [@kubouch](https://github.com/kubouch) fixed a similar one about `cp` in
375375
[#11080](https://github.com/nushell/nushell/pull/11080), addressing
376376
[#10832](https://github.com/nushell/nushell/issues/10832)
@@ -407,7 +407,7 @@ but it is impossible to do `let env = 123`
407407
However, up until now and the work of [@KAAtheWiseGit](https://github.com/KAAtheWiseGit)
408408
in [#11169](https://github.com/nushell/nushell/pull/11169) and
409409
[#11228](https://github.com/nushell/nushell/pull/11228), it was possible to redefined these variables
410-
in command definition, the code would parse and run but you would get the internal values instead of
410+
in command definition: the code would parse and run, but you would get the internal values instead of
411411
the ones passed to the command, which is a nasty silent bug!
412412
From now on, the following will give an error
413413
```nushell
@@ -421,7 +421,7 @@ def baz [in] { print $in }
421421
```
422422
423423
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
425425
`metadata` does not make sense. This release makes the error more helpful:
426426
```nushell
427427
metadata $env
@@ -442,7 +442,7 @@ With [#10941](https://github.com/nushell/nushell/pull/10941), completions should
442442
this release :partying:
443443
444444
## 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!
446446
447447
### New commands [[toc](#table-of-content)]
448448
- `is-terminal` by [@drbrain](https://github.com/drbrain) in [#10970](https://github.com/nushell/nushell/pull/10970)
@@ -479,7 +479,7 @@ Input/output types:
479479
```
480480
481481
### 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
483483
- 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)
484484
- 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.
485485
```nushell

0 commit comments

Comments
 (0)