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 } }