From 581cb10ae9e9c1cc525243edd33c25ad47ecc224 Mon Sep 17 00:00:00 2001 From: Jan Klass Date: Sat, 24 Jan 2026 21:46:02 +0100 Subject: [PATCH] Fix `unlet` example code in 0.110.0 release notes 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. --- blog/2026-01-17-nushell_v0_110_0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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