Merge pull request #844 from nushell/unknown-value

Rename <unknown> to <value>
This commit is contained in:
Jonathan Turner 2019-10-17 08:24:15 +13:00 committed by GitHub
commit 4a6529973e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,7 +42,7 @@ impl TableView {
let mut headers = TableView::merge_descriptors(values);
if headers.len() == 0 {
headers.push("<unknown>".to_string());
headers.push("<value>".to_string());
}
let mut entries = vec![];