Skip to content

Commit

Permalink
Correct typo in Australia/ASX dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Jul 20, 2023
1 parent d4823f9 commit 125a212
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2023-07-20 Dirk Eddelbuettel <edd@debian.org>

* src/calendars.cpp: Correct type in dispatch for 'Australia/ASX'

2023-07-19 Dirk Eddelbuettel <edd@debian.org>

* DESCRIPTION (Version, Date): Release 0.0.7
Expand Down
2 changes: 1 addition & 1 deletion src/calendars.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void QlCal::CalendarContainer::setCalendar(const std::string txt = "TARGET") {
txt == "Australia/Settlement" ||
txt == "Australia::Settlement") {
p_cal.reset(new ql::Australia(ql::Australia::Settlement));
} else if (txt == "Austalia/ASX" ||
} else if (txt == "Australia/ASX" ||
txt == "Australia::ASX") {
p_cal.reset(new ql::Australia(ql::Australia::ASX));

Expand Down

0 comments on commit 125a212

Please sign in to comment.