From c9f05f074aede9bc1e37c9572cac5c839385e330 Mon Sep 17 00:00:00 2001 From: Thomas B Homburg Date: Sun, 17 Apr 2022 16:54:24 +0200 Subject: [PATCH] `nth` -> `select` command (#5217) --- crates/nu-command/src/core_commands/tutor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/nu-command/src/core_commands/tutor.rs b/crates/nu-command/src/core_commands/tutor.rs index 7fc38a5e1b..00afc1ba5c 100644 --- a/crates/nu-command/src/core_commands/tutor.rs +++ b/crates/nu-command/src/core_commands/tutor.rs @@ -178,7 +178,7 @@ The most common form of data in Nushell is the table. Tables contain rows and columns of data. In each cell of the table, there is data that you can access using Nushell commands. -To get the 3rd row in the table, you can use the `nth` command: +To get the 3rd row in the table, you can use the `select` command: ``` ls | select 2 ```