Преглед на файлове

csvcut: formatting cleanup

Hayden Schiff преди 9 години
родител
ревизия
ac13221b41
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      pages/common/csvcut.md

+ 2 - 2
pages/common/csvcut.md

@@ -1,6 +1,6 @@
 # csvcut
 
-> Filter and truncate CSV files. Like unix "cut" command, but for tabular data.
+> Filter and truncate CSV files. Like Unix's `cut` command, but for tabular data.
 > Included in csvkit.
 
 - Print indices and names of all columns:
@@ -11,7 +11,7 @@
 
 `csvcut -c {{1,3}} {{data.csv}}`
 
-- Extract all columns EXCEPT the fourth one:
+- Extract all columns **except** the fourth one:
 
 `csvcut -C {{4}} {{data.csv}}`