Skip to content

Commit 3a78e21

Browse files
authored
Run typos on blog (#1263)
* Run typos on more parts of the repo * Also run typos on the blog * Fix weird tag error
1 parent 96b3499 commit 3a78e21

29 files changed

+1305
-1146
lines changed

Diff for: .github/workflows/typos.yml

+1-8
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,5 @@ jobs:
99
- name: Checkout Actions Repository
1010
uses: actions/checkout@v2
1111

12-
- name: Check spelling of book
12+
- name: Check spelling
1313
uses: crate-ci/typos@master
14-
with:
15-
files: book
16-
17-
- name: Check spelling of contributor book
18-
uses: crate-ci/typos@master
19-
with:
20-
files: contributor-book

Diff for: .typos.toml

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11

22
[files]
3-
extend-exclude = ["pt-BR", "de", "ja", "es", "book/commands"]
3+
extend-exclude = ["pt-BR", "de", "ja", "es", "blog/202[0-3]*"]
44

55
[default.extend-words]
66
# Avoid the false positive in book/commands/str_replace.md
77
ons = "ons"
8+
# Avoid false positive for json placeholder in cookbook/http.md
9+
optio = "optio"
10+
ratatui = "ratatui"
11+
doas = "doas"
12+
iterm = "iterm"
813
nushell = "nushell"

Diff for: blog/2019-10-15-nushell-0_4_0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ For those of you wondering if and when Nu was going to be usable on stable Rust,
4848

4949
## Brazilian Portuguese book (marcelocg)
5050

51-
Contributor marcelocg surprised us with a translation of the Nu book into Brazillian Portuguese. Obrigado, Marcelo!
51+
Contributor marcelocg surprised us with a translation of the Nu book into Brazilian Portuguese. Obrigado, Marcelo!
5252

5353
## New commands
5454

Diff for: blog/2020-03-31-nushell_0_12_0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ nushell/docs on 📙 master
3232
nushell on 📙 master is 📦 v0.12.0 via 🦀 v1.42.0
3333
```
3434

35-
Fish and Windows users rejoice, you can now `cd` to a directory or drive by typing its name in the shell. This also allows Windows users to change drives by giving just the drive name. Now, when you use the drive letter, we'll switch drives and return you to your previous working directory on that drive (eg `D:` will change to the D: drive and `cd` to the path you had been at previousy).
35+
Fish and Windows users rejoice, you can now `cd` to a directory or drive by typing its name in the shell. This also allows Windows users to change drives by giving just the drive name. Now, when you use the drive letter, we'll switch drives and return you to your previous working directory on that drive (eg `D:` will change to the D: drive and `cd` to the path you had been at previously).
3636

3737
## Type inference (andrasio)
3838

Diff for: blog/2020-09-01-nushell_0_19.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ We recently sat down and wrote about [where Nushell has come over the last year]
8787
## Command improvements
8888

8989
- `size` now gives back [simpler columns](https://github.com/nushell/nushell/pull/2473) (gillespiecd)
90-
- `uniqe` has [more examples](https://github.com/nushell/nushell/pull/2472) (gillespiecd)
90+
- `uniq` has [more examples](https://github.com/nushell/nushell/pull/2472) (gillespiecd)
9191
- `ls` will tolerate more [OS errors while listing](https://github.com/nushell/nushell/pull/2466) (gorogoroumaru)
9292
- `cd .` now [does the expected](https://github.com/nushell/nushell/pull/2457) (VincentWo)
9393
- `math stddev` and `math variance` both received updates (gillespiecd)

Diff for: blog/2020-09-22-nushell_0_20.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Completions can [now be case-insensitive](https://github.com/nushell/nushell/pul
100100

101101
## Other improvements (fdncred, gillespiecd, lidin, andrasio, radekvit, jonathandturner, coolshaurya)
102102

103-
Removed unnused dependencies, cleanups to duration, some ARM incompatibilites were fixed, some Ctrl+C issues were fixed, optimized some config reading, cleanup code in `get` and `nu-value-ext`, rustyline was upgraded (fixing a common instability in Windows), `help command` get some improvements, `random integer` got some stability fixes.
103+
Removed unused dependencies, cleanups to duration, some ARM incompatibilites were fixed, some Ctrl+C issues were fixed, optimized some config reading, cleanup code in `get` and `nu-value-ext`, rustyline was upgraded (fixing a common instability in Windows), `help command` get some improvements, `random integer` got some stability fixes.
104104

105105
# Breaking changes
106106

Diff for: blog/2022-05-24-nushell_0_63.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ And more - we're still looking ahead to IDE support, better database support, an
153153
- IanManske created [Fix help menu panic.](https://github.com/nushell/nushell/pull/5581)
154154
- jaeheonji created [feat: apply the `--numbered` option to acc in `reduce` command.](https://github.com/nushell/nushell/pull/5575)
155155
- krober created [Add str title-case](https://github.com/nushell/nushell/pull/5573), and [Str casings reorganization & description updates](https://github.com/nushell/nushell/pull/5572)
156-
- fdncred created [move items to showcase](https://github.com/nushell/nushell/pull/5569), and [refactor all write_alls to ensure flushing](https://github.com/nushell/nushell/pull/5567), and [make print flush](https://github.com/nushell/nushell/pull/5566), and [table refactor for readability](https://github.com/nushell/nushell/pull/5555), and [add the ability to change table mode when running script](https://github.com/nushell/nushell/pull/5520), and [add `--table_mode` `-m` parameter](https://github.com/nushell/nushell/pull/5513), and [refactor for legibility](https://github.com/nushell/nushell/pull/5503), and [adjust where prompt markers go](https://github.com/nushell/nushell/pull/5491), and [add -n flag to print to print without a newline](https://github.com/nushell/nushell/pull/5458), and [enable cd to work with directory abbreviations](https://github.com/nushell/nushell/pull/5452), and [fix bug in shell_integration](https://github.com/nushell/nushell/pull/5450)
156+
- fdncred created [move items to showcase](https://github.com/nushell/nushell/pull/5569), and [refactor all `write_all`s to ensure flushing](https://github.com/nushell/nushell/pull/5567), and [make print flush](https://github.com/nushell/nushell/pull/5566), and [table refactor for readability](https://github.com/nushell/nushell/pull/5555), and [add the ability to change table mode when running script](https://github.com/nushell/nushell/pull/5520), and [add `--table_mode` `-m` parameter](https://github.com/nushell/nushell/pull/5513), and [refactor for legibility](https://github.com/nushell/nushell/pull/5503), and [adjust where prompt markers go](https://github.com/nushell/nushell/pull/5491), and [add -n flag to print to print without a newline](https://github.com/nushell/nushell/pull/5458), and [enable cd to work with directory abbreviations](https://github.com/nushell/nushell/pull/5452), and [fix bug in shell_integration](https://github.com/nushell/nushell/pull/5450)
157157
- rgwood created [Revert "Enable backtraces by default (#5562)"](https://github.com/nushell/nushell/pull/5568), and [Upgrade trash dependency](https://github.com/nushell/nushell/pull/5563), and [Enable backtraces by default](https://github.com/nushell/nushell/pull/5562), and [Remove doctests CI action](https://github.com/nushell/nushell/pull/5556), and [CI: bust caches](https://github.com/nushell/nushell/pull/5550), and [Look up git commit hash ourselves, drop libgit2 dependency](https://github.com/nushell/nushell/pull/5548), and [More CI work](https://github.com/nushell/nushell/pull/5527), and [Change history menu keybinding from ctrl+x to ctrl+r](https://github.com/nushell/nushell/pull/5507), and [Enable converting dates to ints](https://github.com/nushell/nushell/pull/5489), and [Parse timestamps as UTC by default](https://github.com/nushell/nushell/pull/5488), and [Display range values better](https://github.com/nushell/nushell/pull/5487), and [Handle int input in `into datetime`](https://github.com/nushell/nushell/pull/5484), and [Enable string interpolation for environment shorthand](https://github.com/nushell/nushell/pull/5463)
158158
- efugier created [feat(errors): more explicit module_or_overlay_not_found_error help me…](https://github.com/nushell/nushell/pull/5564)
159159
- ocitrev created [Sync resources version](https://github.com/nushell/nushell/pull/5554)

Diff for: blog/2022-06-14-nushell_0_64.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ We've also recent shown an experimental [graphical version of Nushell](https://w
9696
- herlon214 created [nu-engine: better display for shape when showing help params](https://github.com/nushell/nushell/pull/5715), and [nu-cli/completions: add filtering tests for variables completions](https://github.com/nushell/nushell/pull/5653), and [nu-cli/completions: fix filter for variable completions](https://github.com/nushell/nushell/pull/5641)
9797
- sec65 created [Added loginshell config file #4620](https://github.com/nushell/nushell/pull/5714)
9898
- VergeDX created [fix[table]: Panic when passthru small number of `table -w`.](https://github.com/nushell/nushell/pull/5705), and [feat[table]: Allow specific table width with `-w`, like command `grid`.](https://github.com/nushell/nushell/pull/5643)
99-
- PerBothner created [Minor fixes to shell integation in repl.](https://github.com/nushell/nushell/pull/5701), and [Improve table output of 'to html',](https://github.com/nushell/nushell/pull/5699)
99+
- PerBothner created [Minor fixes to shell integration in repl.](https://github.com/nushell/nushell/pull/5701), and [Improve table output of 'to html',](https://github.com/nushell/nushell/pull/5699)
100100
- Yethal created [Add completions for nu](https://github.com/nushell/nushell/pull/5700)
101101
- mjclements created [Differentiate internal signature from external signature w.r.t. help](https://github.com/nushell/nushell/pull/5667)
102102
- EjPlatzer created [Add search terms for `all?`, `any?`, `length`, and `keybindings`](https://github.com/nushell/nushell/pull/5665)

Diff for: blog/2022-09-06-nushell-0_68.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ Some time was spent trying out possible new syntax directions but we were not co
270270
- obaudys created [Fix ps command CPU usage on Apple Silicon M1 macs. #4142](https://github.com/nushell/nushell/pull/6457)
271271
- fdncred created [Revert "Add support for optional list stream output formatting"](https://github.com/nushell/nushell/pull/6454), and [add more color highlighting to help](https://github.com/nushell/nushell/pull/6449), and [add the ast command to peek at the internals of nushell](https://github.com/nushell/nushell/pull/6423), and [convert string duration to named duration](https://github.com/nushell/nushell/pull/6406), and [add a plugin registration script](https://github.com/nushell/nushell/pull/6395), and [add another split words example](https://github.com/nushell/nushell/pull/6394), and [add edit distance/levenshtein command](https://github.com/nushell/nushell/pull/6383), and [add MessagePack as a plugin protocol](https://github.com/nushell/nushell/pull/6370), and [fix the way lists are rendered in markdown](https://github.com/nushell/nushell/pull/6369), and [add a split words command](https://github.com/nushell/nushell/pull/6363), and [create clickable links in ls output if configured](https://github.com/nushell/nushell/pull/6333)
272272
- rgwood created [Upgrade `which` dependency to fix case on Windows](https://github.com/nushell/nushell/pull/6453), and [Disable clickable links in SSH sessions](https://github.com/nushell/nushell/pull/6439), and [Always report errors in `cp`](https://github.com/nushell/nushell/pull/6404), and [Make `cp` errors more specific+accurate](https://github.com/nushell/nushell/pull/6396), and [Add pause and cls to cmd.exe exceptions](https://github.com/nushell/nushell/pull/6371)
273-
- dscottboggs created [better error handling for nu_command::env::conig::utils::get_editor](https://github.com/nushell/nushell/pull/6430)
273+
- dscottboggs created [better error handling for nu_command::env::config::utils::get_editor](https://github.com/nushell/nushell/pull/6430)
274274
- nibon7 created [Make run_external parameter required](https://github.com/nushell/nushell/pull/6418), and [Fix the span of "invalid time zone"](https://github.com/nushell/nushell/pull/6411), and [register-plugin.nu: refactor register plugin](https://github.com/nushell/nushell/pull/6409), and [register-plugin.nu: remove `.exe` extension match to simplify code](https://github.com/nushell/nushell/pull/6400), and [Add test cases for $nu.config-path change](https://github.com/nushell/nushell/pull/6385), and [Get `$nu.config-path` and `$nu.env-path` from `EngineState`](https://github.com/nushell/nushell/pull/6366), and [Use string interpolation to construct log file path](https://github.com/nushell/nushell/pull/6365), and [Return error when `kill` didn't terminate successfully ](https://github.com/nushell/nushell/pull/6354)
275275
- herlon214 created [nu-command/filters: drop column check positive value](https://github.com/nushell/nushell/pull/6412), and [nu-cli: merge completions tests into one file](https://github.com/nushell/nushell/pull/6389), and [feat: external completions for commands/flags](https://github.com/nushell/nushell/pull/6295)
276276
- hustcer created [Update nu version for release workflow](https://github.com/nushell/nushell/pull/6361), and [Bump dev version](https://github.com/nushell/nushell/pull/6350)

Diff for: blog/2022-11-08-nushell-0.71.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ We've drafted a version of the [design philosophy for 0.80](https://github.com/n
139139
- kambala-decapitator created [fix description of build-string's second example](https://github.com/nushell/nushell/pull/6912)
140140
- melMass created [fix: ✨ "saner" default for mv](https://github.com/nushell/nushell/pull/6904), and [docs: 📝 add "map" to each's search terms](https://github.com/nushell/nushell/pull/6903)
141141
- zhiburt created [[WIP] table: Show truncated record differently](https://github.com/nushell/nushell/pull/6884), and [table/ Fix paging indexing](https://github.com/nushell/nushell/pull/6850), and [`table -e` Fix stackoverflow (cause endless empty list)](https://github.com/nushell/nushell/pull/6847), and [`table -e` align key to 2nd line](https://github.com/nushell/nushell/pull/6842), and [nu-table: Check perf improvements](https://github.com/nushell/nushell/pull/6710)
142-
- FilipAndersson245 created [Bumps windows dependencie](https://github.com/nushell/nushell/pull/6865)
142+
- FilipAndersson245 created [Bumps windows dependency](https://github.com/nushell/nushell/pull/6865)
143143
- nibon7 created [path: fix error message](https://github.com/nushell/nushell/pull/6860), and [rm: don't update target_exists every time in the loop](https://github.com/nushell/nushell/pull/6837), and [Add missing `shape_directory` to default_config.nu](https://github.com/nushell/nushell/pull/6836), and [rm: fix error span when targets doesn't exists](https://github.com/nushell/nushell/pull/6815), and [Add support to render right prompt on last line of the prompt](https://github.com/nushell/nushell/pull/6781), and [Prepend directory to the binary tarball](https://github.com/nushell/nushell/pull/6701)
144144
- hustcer created [Update ci workflow actions, fix #6713](https://github.com/nushell/nushell/pull/6841)
145145
- ChrisDenton created [Try not to use verbatim paths for UNC shares](https://github.com/nushell/nushell/pull/6824)

Diff for: blog/2022-12-20-nushell-0.73.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ Starting with 0.73, Nushell now provides a RISC V for Linux as part of the set o
192192
# Breaking changes
193193

194194
- `save` no longer overwrites files by default, you must use the new `-f`/`--force` flag to overwrite an existing file ([#7262](https://github.com/nushell/nushell/pull/7262))
195-
- `split row` command will retain an empty string if splitted string is empty. ([#7413](https://github.com/nushell/nushell/pull/7413))
195+
- `split row` command will retain an empty string if the split string is empty. ([#7413](https://github.com/nushell/nushell/pull/7413))
196196
- `split list` now properly removes the separator in all positions ([#7355](https://github.com/nushell/nushell/pull/7355))
197197
- [The `--show-created-paths` flag has been replaced by `--verbose` from `mkdir`](https://github.com/nushell/nushell/pull/7462).
198198
- `fetch`: the `--output`, `--bin`, `--append` flags have been removed, use `fetch` with `save` to save fetched page to a file. ([#7468](https://github.com/nushell/nushell/pull/7468))

Diff for: blog/2023-01-10-nushell_0_74.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ The current batch of improvements can still be taken further. For example, custo
6565

6666
_This is a proof-of-concept that we plan to expand in the future._
6767

68-
_Tip: We also addedd a new [book section](https://www.nushell.sh/book/how_nushell_code_gets_run.html) with an in-depth explanation of Nushell's parsing and evaluation, hopefully clearing up some confusion about things like "Why can't I source a dynamic path?". It also touches on the concept of parse-time constants._
68+
_Tip: We also added a new [book section](https://www.nushell.sh/book/how_nushell_code_gets_run.html) with an in-depth explanation of Nushell's parsing and evaluation, hopefully clearing up some confusion about things like "Why can't I source a dynamic path?". It also touches on the concept of parse-time constants._
6969

7070
A new `const` keyword is added to Nushell to define "parse-time" constants. Constants defined with `const` behave the same as variables defined with `let`, but in addition, they are usable in some contexts that require values known at parse-time. Currently, this applies to files or names passed to `use`, `overlay use`, `source`, and `source-env`. For example, the following now works:
7171

0 commit comments

Comments
 (0)