From bd6556eee197723ee5b779edab70559665eb49dc Mon Sep 17 00:00:00 2001 From: Shaurya Shubham Date: Tue, 18 Feb 2020 20:07:46 +0530 Subject: [PATCH] Use proper file extension for `uniq` command docs (#1411) --- docs/commands/{uniq.rs => uniq.md} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) rename docs/commands/{uniq.rs => uniq.md} (82%) diff --git a/docs/commands/uniq.rs b/docs/commands/uniq.md similarity index 82% rename from docs/commands/uniq.rs rename to docs/commands/uniq.md index d80f66d164..ce31db1bf3 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` ━━━┯━━━━━━━━━ -# │ + # │ ───┼───────── -0 │ A -1 │ B + 0 │ A + 1 │ B ━━━┷━━━━━━━━━ ```