Merge pull request #257 from GabrielBG0/ls-type-lowercase

`ls` type lowercase
This commit is contained in:
JT 2021-10-27 08:46:45 +13:00 committed by GitHub
commit 1eb93e5c07
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -69,9 +69,9 @@ impl Command for Ls {
span: call_span,
},
if is_file {
Value::string("File", call_span)
Value::string("file", call_span)
} else if is_dir {
Value::string("Dir", call_span)
Value::string("dir", call_span)
} else {
Value::Nothing { span: call_span }
},