Update wrap example (#13986)

# Description

As with #13985, credit to @AlifianK for suggesting this in
https://github.com/nushell/nushell.github.io/pull/1572

Updates the example in `wrap` to not use 1-based, sequential numbers.

# User-Facing Changes

Help/doc only

# Tests + Formatting

- 🟢 `toolkit fmt`
- 🟢 `toolkit clippy`
- 🟢 `toolkit test`
- 🟢 `toolkit test stdlib`

# After Submitting

N/A
This commit is contained in:
Douglas 2024-10-02 02:11:07 -04:00 committed by GitHub
parent 52eb9c2ef3
commit cf5b2aeb88
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -57,31 +57,34 @@ impl Command for Wrap {
vec![ vec![
Example { Example {
description: "Wrap a list into a table with a given column name", description: "Wrap a list into a table with a given column name",
example: "[1 2 3] | wrap num", example: "[ Pachisi Mahjong Catan Carcassonne ] | wrap game",
result: Some(Value::test_list(vec![ result: Some(Value::test_list(vec![
Value::test_record(record! { Value::test_record(record! {
"num" => Value::test_int(1), "game" => Value::test_string("Pachisi"),
}), }),
Value::test_record(record! { Value::test_record(record! {
"num" => Value::test_int(2), "game" => Value::test_string("Mahjong"),
}), }),
Value::test_record(record! { Value::test_record(record! {
"num" => Value::test_int(3), "game" => Value::test_string("Catan"),
}),
Value::test_record(record! {
"game" => Value::test_string("Carcassonne"),
}), }),
])), ])),
}, },
Example { Example {
description: "Wrap a range into a table with a given column name", description: "Wrap a range into a table with a given column name",
example: "1..3 | wrap num", example: "4..6 | wrap num",
result: Some(Value::test_list(vec![ result: Some(Value::test_list(vec![
Value::test_record(record! { Value::test_record(record! {
"num" => Value::test_int(1), "num" => Value::test_int(4),
}), }),
Value::test_record(record! { Value::test_record(record! {
"num" => Value::test_int(2), "num" => Value::test_int(5),
}), }),
Value::test_record(record! { Value::test_record(record! {
"num" => Value::test_int(3), "num" => Value::test_int(6),
}), }),
])), ])),
}, },