mirror of
https://github.com/nushell/nushell.git
synced 2024-11-08 09:34:30 +01:00
correct table example syntax (#11074)
# Description Correct an example that had old syntax. # User-Facing Changes <!-- List of all changes that impact the user experience here. This helps us keep track of breaking changes. --> # Tests + Formatting <!-- Don't forget to add tests that cover your changes. Make sure you've run and fixed any issues with these commands: - `cargo fmt --all -- --check` to check standard code formatting (`cargo fmt --all` applies these changes) - `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass (on Windows make sure to [enable developer mode](https://learn.microsoft.com/en-us/windows/apps/get-started/developer-mode-features-and-debugging)) - `cargo run -- -c "use std testing; testing run-tests --path crates/nu-std"` to run the tests for the standard library > **Note** > from `nushell` you can also use the `toolkit` as follows > ```bash > use toolkit.nu # or use an `env_change` hook to activate it automatically > toolkit check pr > ``` --> # After Submitting <!-- If your PR had any user-facing changes, update [the documentation](https://github.com/nushell/nushell.github.io) after the PR is merged, if necessary. This will help us keep the docs up to date. -->
This commit is contained in:
parent
52d4259f58
commit
461837773b
@ -73,7 +73,7 @@ impl Command for Table {
|
|||||||
.named(
|
.named(
|
||||||
"index",
|
"index",
|
||||||
SyntaxShape::Any,
|
SyntaxShape::Any,
|
||||||
"enable or disable the #/index column or set the starting index",
|
"enable (true) or disable (false) the #/index column or set the starting index",
|
||||||
Some('i'),
|
Some('i'),
|
||||||
)
|
)
|
||||||
.named(
|
.named(
|
||||||
@ -90,7 +90,7 @@ impl Command for Table {
|
|||||||
.named(
|
.named(
|
||||||
"expand-deep",
|
"expand-deep",
|
||||||
SyntaxShape::Int,
|
SyntaxShape::Int,
|
||||||
"an expand limit of recursion which will take place. must be used with expand",
|
"an expand limit of recursion which will take place, must be used with --expand",
|
||||||
Some('d'),
|
Some('d'),
|
||||||
)
|
)
|
||||||
.switch("flatten", "Flatten simple arrays", None)
|
.switch("flatten", "Flatten simple arrays", None)
|
||||||
@ -145,7 +145,7 @@ impl Command for Table {
|
|||||||
vec![
|
vec![
|
||||||
Example {
|
Example {
|
||||||
description: "List the files in current directory, with indexes starting from 1",
|
description: "List the files in current directory, with indexes starting from 1",
|
||||||
example: r#"ls | table --start-number 1"#,
|
example: r#"ls | table --index 1"#,
|
||||||
result: None,
|
result: None,
|
||||||
},
|
},
|
||||||
Example {
|
Example {
|
||||||
@ -201,7 +201,8 @@ impl Command for Table {
|
|||||||
result: None,
|
result: None,
|
||||||
},
|
},
|
||||||
Example {
|
Example {
|
||||||
description: "Set the starting number of the #/index column for a single run",
|
description:
|
||||||
|
"Set the starting number of the #/index column to 100 for a single run",
|
||||||
example: r#"[[a b]; [1 2] [2 [4 4]]] | table -i 100"#,
|
example: r#"[[a b]; [1 2] [2 [4 4]]] | table -i 100"#,
|
||||||
result: None,
|
result: None,
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user