diff --git a/blog/2026-01-17-nushell_v0_110_0.md b/blog/2026-01-17-nushell_v0_110_0.md index f87be2b43d8..3bf58b0254e 100644 --- a/blog/2026-01-17-nushell_v0_110_0.md +++ b/blog/2026-01-17-nushell_v0_110_0.md @@ -92,7 +92,7 @@ To bring balance to the universe, [#17270](https://github.com/nushell/nushell/pu ❯ let a = 1;let b = 2;let c = 3;let d = 4 ❯ $"($a)($b)($c)($d)" 1234 -❯ unlet $a $b $cM +❯ unlet $a $b $c $d ❯ $"($a)($b)($c)($d)" Error: nu::shell::variable_not_found