From 0e7e3c02f65f9b89c7bb631abcf46bc47099086e Mon Sep 17 00:00:00 2001 From: Antoine Stevan <44101798+amtoine@users.noreply.github.com> Date: Wed, 20 Nov 2024 18:04:23 +0100 Subject: [PATCH] fix docstring of `from ndnuon` Co-authored-by: Douglas <32344964+NotTheDr01ds@users.noreply.github.com> --- crates/nu-std/std/formats/mod.nu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-std/std/formats/mod.nu b/crates/nu-std/std/formats/mod.nu index 2695a8f702..addfa4c1c9 100644 --- a/crates/nu-std/std/formats/mod.nu +++ b/crates/nu-std/std/formats/mod.nu @@ -29,7 +29,7 @@ export def "to jsonl" []: any -> string { each { to json --raw } | to text } -# Convert from NDNUON, i.e. newline-delimited NUON, to structured +# Convert from NDNUON (newline-delimited NUON), to structured data export def "from ndnuon" []: [string -> any] { lines | each { from nuon } }