File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -134,9 +134,8 @@ Usage: jsonlite command <command-specific-options>
134134```
135135➜ jsonlite
136136JSONlite 1.0.0
137- set is using: json_reformat (fastest)
138-
139- Data directory path: /tmp/jsonlite.data
137+ - Set is using: json_reformat (fastest)
138+ - Data directory path: /tmp/jsonlite.data
140139
141140Usage: jsonlite command <command-specific-options>
142141
Original file line number Diff line number Diff line change @@ -29,15 +29,14 @@ jsonlite_info() {
2929 jsonlite_version
3030
3131 if command -v json_reformat > /dev/null 2>&1 ; then
32- echo " set is using: json_reformat (fastest)"
32+ echo " - Set is using: json_reformat (fastest)"
3333 elif command -v jq > /dev/null 2>&1 ; then
34- echo " set is using: jq (fast)"
34+ echo " - Set is using: jq (fast)"
3535 else
36- echo " set is using: python -m json.tool (slow )"
36+ echo " - Set is using: python -m json.tool (slowest )"
3737 fi
3838
39- echo
40- echo " Data directory path: $JSONLITE_DATA_DIR "
39+ echo " - Data directory path: $JSONLITE_DATA_DIR "
4140 echo
4241}
4342
You can’t perform that action at this time.
0 commit comments