From a43a618f690564e1a8436adb0f1eb8e6ec911480 Mon Sep 17 00:00:00 2001 From: Tim 'Piepmatz' Hesse Date: Sun, 5 Jul 2026 10:36:52 +0200 Subject: [PATCH] fixed overflowing content --- blog/2026-07-04-nushell_v0_114_0.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/blog/2026-07-04-nushell_v0_114_0.md b/blog/2026-07-04-nushell_v0_114_0.md index f23eb56cbe0..004bb64482c 100644 --- a/blog/2026-07-04-nushell_v0_114_0.md +++ b/blog/2026-07-04-nushell_v0_114_0.md @@ -361,9 +361,6 @@ Let's see how this works with an example: `$in` variable is now typed based on the pipeline input type of the surrounding expression. -
-
- ```ansi:no-line-numbers title="Before. Error is caught at runtime." Error: nu::shell::operator_incompatible_types @@ -377,9 +374,6 @@ Error: nu::shell::operator_incompatible_types ╰──── ``` -
-
- ```ansi:no-line-numbers title="After. Error is caught at parse time." Error: nu::parser::operator_incompatible_types @@ -393,9 +387,6 @@ Error: nu::parser::operator_incompatible_types ╰──── ``` -
-
- #### Better type inference of `let` bindings `let` bindings in the middle of a pipeline, or at the end of it, are now properly typed based ont the pipeline input type.