branch: elpa/csv2ledger
commit 40e1230600636366c2a0a73c3bff1cf6dbec9eed
Author: Joost Kremers <joostkrem...@fastmail.fm>
Commit: Joost Kremers <joostkrem...@fastmail.fm>

    Fix doc string of `c2l--csv-line-to-ledger`.
---
 csv2ledger.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/csv2ledger.el b/csv2ledger.el
index 3557add0a6..bd4c39eaa2 100644
--- a/csv2ledger.el
+++ b/csv2ledger.el
@@ -277,9 +277,9 @@ for that account."
 ROW contains the data of the entry as a list of strings.  The
 strings are interpreted according to the template in
 `c2l-csv-columns'.  The transaction is booked to the account in
-`c2l-base-account'.  The reverse account is determined on the
+`c2l-base-account'.  The balancing account is determined on the
 basis of the matchers in `c2l-account-matchers-file'.  If none is
-found, the value of `c2l-fallback-balancing-account' is used.  If
+found, the value of `c2l-fallback-account' is used.  If
 that option is unset, the user is asked for an account."
   (let* ((fields (--remove (eq (car it) '_) (-zip-pair c2l-csv-columns row)))
          (account (or (-some #'c2l--match-account (mapcar #'cdr (--filter 
(memq (car it) c2l-balancing-match-fields) fields)))

Reply via email to