Skip to content

Commit

Permalink
Fix formatting to appease travis
Browse files Browse the repository at this point in the history
  • Loading branch information
schveiguy committed Jul 21, 2016
1 parent 89b2f56 commit 10af122
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions std/datetime.d
Expand Up @@ -28174,7 +28174,7 @@ public:
foreach (winName; windowsNames)
{
auto tzName = windowsTZNameToTZDatabaseName(winName);
if(tzName !is null && tzName.startsWith(subName))
if (tzName !is null && tzName.startsWith(subName))
retval.put(tzName);
}

Expand Down Expand Up @@ -31586,7 +31586,7 @@ version(Windows) version(UpdateWindowsTZTranslations) deprecated @system unittes
{
import std.stdio : stderr;

foreach(tzName; TimeZone.getInstalledTZNames())
foreach (tzName; TimeZone.getInstalledTZNames())
{
if (tzDatabaseNameToWindowsTZName(tzName) is null)
stderr.writeln("Missing TZName to Windows translation: ", tzName);
Expand Down Expand Up @@ -31766,7 +31766,7 @@ version(Windows) version(UpdateWindowsTZTranslations) deprecated @system unittes
{
import std.stdio : stderr;

foreach(winName; WindowsTimeZone.getInstalledTZNames())
foreach (winName; WindowsTimeZone.getInstalledTZNames())
{
if (windowsTZNameToTZDatabaseName(winName) is null)
stderr.writeln("Missing Windows to TZName translation: ", winName);
Expand Down

0 comments on commit 10af122

Please sign in to comment.