mirror of
https://github.com/nushell/nushell.git
synced 2025-05-28 14:07:08 +02:00
# User-Facing Changes Table literal arguments to list parameters are now correctly parsed: ```diff def a [l: list<any>] { $l | to nuon }; a [[a]; [2]] -[[a]] +[[a]; [2]] ```