Skip to content

Commit 2eb8753

Browse files
authored
Fix unlet example code in 0.110.0 release notes (#2112)
The code example is invalid. As it was, `$cM` leads to an error when calling `unlet`. The linked pull request has the same issue. Presumably, the example should unlet all four declared variables. Alternatively, it could unlet three of the four variables.
1 parent c50965b commit 2eb8753

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

blog/2026-01-17-nushell_v0_110_0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ To bring balance to the universe, [#17270](https://github.com/nushell/nushell/pu
9292
❯ let a = 1;let b = 2;let c = 3;let d = 4
9393
❯ $"($a)($b)($c)($d)"
9494
1234
95-
❯ unlet $a $b $cM
95+
❯ unlet $a $b $c $d
9696
❯ $"($a)($b)($c)($d)"
9797
Error: nu::shell::variable_not_found
9898

0 commit comments

Comments
 (0)