Skip to content

Commit

Permalink
Fixed long lines in std/windows/registry.d
Browse files Browse the repository at this point in the history
  • Loading branch information
JackStouffer committed May 11, 2016
1 parent f6bfee2 commit 827b677
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion std/windows/registry.d
Original file line number Diff line number Diff line change
Expand Up @@ -1786,7 +1786,10 @@ unittest
string unittestKeyName = "Temporary key for a D UnitTest which can be deleted afterwards";
Key unittestKey = HKCU.createKey(unittestKeyName);
assert(unittestKey);
Key cityKey = unittestKey.createKey("CityCollection using foreign names with umlauts and accents: \u00f6\u00e4\u00fc\u00d6\u00c4\u00dc\u00e0\u00e1\u00e2\u00df");
Key cityKey = unittestKey.createKey(
"CityCollection using foreign names with umlauts and accents: "
~"\u00f6\u00e4\u00fc\u00d6\u00c4\u00dc\u00e0\u00e1\u00e2\u00df"
);
cityKey.setValue("K\u00f6ln", "Germany"); // Cologne
cityKey.setValue("\u041c\u0438\u043d\u0441\u043a", "Belarus"); // Minsk
cityKey.setValue("\u5317\u4eac", "China"); // Bejing
Expand Down

0 comments on commit 827b677

Please sign in to comment.