Adds column names for transaction code and transaction notes. Fixes typo 'expneses'. (#1735)

This commit is contained in:
guillem 2021-11-03 12:07:48 +01:00 committed by GitHub
parent b28b6527f3
commit 6e34105043
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -13,10 +13,10 @@ $ ledger csv
{: .-setup} {: .-setup}
```csv ```csv
date , ? , desc , account , currency , amt , pending/cleared , ? date , code , desc , account , currency , amt , pending/cleared , notes
"2013/09/02" , "" , "things" , "Assets:Cash" , "P" , "-2000" , "*" , "" "2013/09/02" , "" , "things" , "Assets:Cash" , "P" , "-2000" , "*" , ""
"2013/09/02" , "" , "things" , "Liabilities:Card" , "P" , "-200" , "*" , "" "2013/09/02" , "" , "things" , "Liabilities:Card" , "P" , "-200" , "*" , ""
"2013/09/02" , "" , "things" , "Expenses:Things" , "P" , "2200" , "*" , "" "2013/09/02" , "" , "things" , "Expenses:Things" , "P" , "2200" , "*" , ""
"2013/09/04" , "" , "stuff" , "Assets:Cash" , "P" , "-20" , "*" , "" "2013/09/04" , "" , "stuff" , "Assets:Cash" , "P" , "-20" , "*" , ""
"2013/09/04" , "" , "stuff" , "Expneses:Others" , "P" , "20" , "*" , "" "2013/09/04" , "" , "stuff" , "Expenses:Others" , "P" , "20" , "*" , ""
``` ```