Skip to content

Commit 85622de

Browse files
committed
improve the readability to eliminate misinterpration
1 parent 92929e0 commit 85622de

File tree

1 file changed

+1
-1
lines changed
  • implement-shell-tools/ls

1 file changed

+1
-1
lines changed

implement-shell-tools/ls/ls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
parser.add_argument("-1", "--one", dest="one", help="Output one entry per line", action="store_true")
1010
parser.add_argument("-a", help="List all files & directories, including hidden ones", action="store_true")
11-
parser.add_argument("paths", nargs="*", default=["."], help="The file path to read from")
11+
parser.add_argument("paths", nargs="*", default=["."], help="The file(s) or directories to list")
1212

1313
args = parser.parse_args()
1414

0 commit comments

Comments
 (0)