From 425d237b66868d22ef26ae5a981f6501eb6741f0 Mon Sep 17 00:00:00 2001 From: Axel Sorenson Date: Wed, 11 Jun 2025 05:36:22 -0700 Subject: [PATCH] Remove awkward newline from scripts.md Removed a newline from a code example in order to match its counterparts in this file (every other code example has "# myscript.nu" directly above the code, without an additional newline in between them). I apologize if my pedantism is a little much here! --- book/scripts.md | 1 - 1 file changed, 1 deletion(-) diff --git a/book/scripts.md b/book/scripts.md index a600fcb8048..40ecb221d9c 100644 --- a/book/scripts.md +++ b/book/scripts.md @@ -62,7 +62,6 @@ For example: ```nu # myscript.nu - def main [x: int] { $x + 10 }