Skip to content

Commit 7cac44b

Browse files
committed
updated README.md
1 parent b431275 commit 7cac44b

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,8 @@ Usage: jsonlite command <command-specific-options>
134134
```
135135
➜ jsonlite
136136
JSONlite 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
141140
Usage: jsonlite command <command-specific-options>
142141

jsonlite.bash

+4-5
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)