Skip to content

Commit 2b7c51f

Browse files
committed
Fix indentation in ddoc_xml_extractor
1 parent 8a57d88 commit 2b7c51f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/ddoc_xml_extractor.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ auto toDdoc(const ref Article article, string suffix)
3030
with(article)
3131
{
3232
auto prettyMonth = ["January", "February", "March", "April", "May", "June", "July",
33-
"August", "September", "October", "November", "December"][date.month-1];
33+
"August", "September", "October", "November", "December"][date.month - 1];
3434
auto prettyDate = "%s %d, %d".format(prettyMonth, date.day, date.year);
3535
text =
3636
`DBLOG_LATEST_TITLE%5$s=%1$s

0 commit comments

Comments
 (0)