mirror of
https://github.com/nushell/nushell.git
synced 2025-05-10 01:42:57 +00:00
# Description Before this change, `"hash sha256 123 ok" | split words` would return `[hash sha ok]` - which is surprising to say the least. Now it will return `[hash sha256 123 ok]`. Refs: https://discord.com/channels/601130461678272522/615253963645911060/1268151658572025856 # User-Facing Changes `split words` will no longer remove digits. # Tests + Formatting Added a test for this specific case. # After Submitting