From fdd1378b4e298db07897038dc5424973c58af611 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Sun, 7 Aug 2016 07:05:10 -0700 Subject: [PATCH] doc: csv how to: remove undocumented tilde operator #386 --- site/how-to-read-csv-files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/how-to-read-csv-files.md b/site/how-to-read-csv-files.md index f4f480ecf..d654da80c 100644 --- a/site/how-to-read-csv-files.md +++ b/site/how-to-read-csv-files.md @@ -25,7 +25,7 @@ account1 assets:bank:checking # if the CSV record contains ‘SAVINGS’, set the second account to assets:bank:savings # (if not set, it will be expenses:unknown or income:unknown) -if ~ SAVINGS +if SAVINGS account2 assets:bank:savings ```