mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 14:25:55 +02:00
display boolean config options as true/false instead of Yes/No (#3043)
This commit is contained in:
@ -24,12 +24,12 @@ Given the following meals
|
||||
Show the empty contents
|
||||
```shell
|
||||
> echo [[meal size]; [arepa small] [taco '']] | empty? meal size
|
||||
═══╦══════╦══════
|
||||
# ║ meal ║ size
|
||||
═══╬══════╬══════
|
||||
0 ║ No ║ No
|
||||
1 ║ No ║ Yes
|
||||
═══╩══════╩══════
|
||||
═══╦═══════╦═══════
|
||||
# ║ meal ║ size
|
||||
═══╬═══════╬═══════
|
||||
0 ║ false ║ false
|
||||
1 ║ false ║ true
|
||||
═══╩═══════╩═══════
|
||||
```
|
||||
|
||||
Let's assume we have a report of totals per day. For simplicity we show just for three days `2020/04/16`, `2020/07/10`, and `2020/11/16`. Like so
|
||||
|
Reference in New Issue
Block a user