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 ━━━┷━━━━━━━━━ ```