mirror of
https://github.com/nushell/nushell
synced 2024-12-31 23:39:00 +00:00
aa08e81370
related to https://discord.com/channels/601130461678272522/1134054657086464072 # Description the `enumerate` command always returns a table but its signature is `any -> any` which can be confusing 😕 this PR changes the signature to `any -> table` i've double checked and the source of `enumerate` returns a list of records, a.k.a. a table 👌 # User-Facing Changes this shouldn't change anything apart from the help page of `enumerate` showing now ``` Input/output types: ╭───┬───────┬────────╮ │ # │ input │ output │ ├───┼───────┼────────┤ │ 0 │ any │ table │ ╰───┴───────┴────────╯ ``` instead of ``` Input/output types: ╭───┬───────┬────────╮ │ # │ input │ output │ ├───┼───────┼────────┤ │ 0 │ any │ any │ ╰───┴───────┴────────╯ ``` # Tests + Formatting - 🟢 `toolkit fmt` - 🟢 `toolkit clippy` - ⚫ `toolkit test` - ⚫ `toolkit test stdlib` # After Submitting |
||
---|---|---|
.. | ||
charting | ||
conversions | ||
database | ||
date | ||
debug | ||
deprecated | ||
env | ||
experimental | ||
filesystem | ||
filters | ||
formats | ||
generators | ||
hash | ||
help | ||
math | ||
misc | ||
network | ||
path | ||
platform | ||
random | ||
shells | ||
strings | ||
system | ||
viewers | ||
default_context.rs | ||
example_test.rs | ||
hook.rs | ||
lib.rs | ||
progress_bar.rs | ||
sort_utils.rs |