summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShaurya Shubham <shauryashubham1234567890@gmail.com>2020-02-18 20:07:46 +0530
committerGitHub <noreply@github.com>2020-02-18 09:37:46 -0500
commitbd6556eee197723ee5b779edab70559665eb49dc (patch)
tree894a412853dc5e8bbd5f95f47b6a4fd78e487c73
parent18d988d4c8ac58341324d05e9ebede80be3d395a (diff)
Use proper file extension for `uniq` command docs (#1411)0.10.0
-rw-r--r--docs/commands/uniq.md (renamed from docs/commands/uniq.rs)12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/commands/uniq.rs b/docs/commands/uniq.md
index d80f66d16..ce31db1bf 100644
--- a/docs/commands/uniq.rs
+++ b/docs/commands/uniq.md
@@ -19,18 +19,18 @@ Yehuda,Katz,10/11/2013,A
━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━
# │ first_name │ last_name │ rusty_at │ type
───┼────────────┼───────────┼────────────┼──────
-0 │ Andrés │ Robalino │ 10/11/2013 │ A
-1 │ Jonathan │ Turner │ 10/12/2013 │ B
-2 │ Yehuda │ Katz │ 10/11/2013 │ A
+ 0 │ Andrés │ Robalino │ 10/11/2013 │ A
+ 1 │ Jonathan │ Turner │ 10/12/2013 │ B
+ 2 │ Yehuda │ Katz │ 10/11/2013 │ A
━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━
```
```
> `open test.csv | get type | uniq`
━━━┯━━━━━━━━━
-# │ <value>
+ # │ <value>
───┼─────────
-0 │ A
-1 │ B
+ 0 │ A
+ 1 │ B
━━━┷━━━━━━━━━
```