fixed this compile error on htmltotext.d:

htmltotext.d(64): Error: function arsd.htmltotext.repeat (string s, int num) is not callable using argument types (string, ulong)
htmltotext.d(69): Error: function arsd.htmltotext.repeat (string s, int num) is not callable using argument types (string, ulong)
This commit is contained in:
Juanjo Alvarez 2014-06-17 15:24:14 +02:00
parent 576eb15638
commit bf191b2242
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ import arsd.dom;
import std.string;
import std.array : replace;
string repeat(string s, int num) {
string repeat(string s, ulong num) {
string ret;
foreach(i; 0 .. num)
ret ~= s;