Merge branch 'main' into last2

This commit is contained in:
Michael Angerman 2021-10-26 12:49:08 -07:00
commit 0f27249319

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 }
},