Minor fixes

This commit is contained in:
Dawid Masiukiewicz 2021-05-09 16:46:11 +00:00
parent bcd9ee4aa0
commit cc097dddf0
2 changed files with 3 additions and 3 deletions

View file

@ -66,7 +66,7 @@ static string attachParentName(alias T, string str)()
{
return attachParentName!(parent, parent_str[7 .. $] ~ '.' ~ str);
}
else return parent_str[8 .. $] ~ '.' ~ str;
else return parent_str[7 .. $] ~ '.' ~ str;
}
else static if(parent_str[0..8] == "package ")
{