diff options
author | Martin Michlmayr <tbm@cyrius.com> | 2020-05-21 21:12:39 +0800 |
---|---|---|
committer | Martin Michlmayr <tbm@cyrius.com> | 2020-05-21 21:12:39 +0800 |
commit | bc1dcd187fb6f24d6b96ceb4c9b9176624b90dab (patch) | |
tree | cc6e3300943195e1e096bc84fbfefb8dfce3bb61 /src/textual.cc | |
parent | a254f598b2fc99d7ae917579803ccdd6dc872c4d (diff) | |
download | fork-ledger-bc1dcd187fb6f24d6b96ceb4c9b9176624b90dab.tar.gz fork-ledger-bc1dcd187fb6f24d6b96ceb4c9b9176624b90dab.tar.bz2 fork-ledger-bc1dcd187fb6f24d6b96ceb4c9b9176624b90dab.zip |
Fix typos in comments
Diffstat (limited to 'src/textual.cc')
-rw-r--r-- | src/textual.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textual.cc b/src/textual.cc index ebd7c314..c3bb2c2f 100644 --- a/src/textual.cc +++ b/src/textual.cc @@ -862,7 +862,7 @@ void instance_t::apply_year_directive(char * line) apply_stack.push_front(application_t("year", epoch)); DEBUG("times.epoch", "Setting current year to " << year); // This must be set to the last day of the year, otherwise partial - // dates like "11/01" will refer to last year's november, not the + // dates like "11/01" will refer to last year's November, not the // current year. epoch = datetime_t(date_t(year, 12, 31)); } catch(bad_lexical_cast &) { |