Skip to content

Commit

Permalink
Fixed typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-ludwig committed Oct 12, 2012
1 parent 24ce385 commit 367c975
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/vibe/http/rest.d
Original file line number Diff line number Diff line change
Expand Up @@ -573,9 +573,9 @@ private @property string getReturnTypeString(alias F)()
{
alias ReturnType!F T;
static if (returnsRef!F)
return "ref " ~ fullyQualifiedTypename!T;
return "ref " ~ fullyQualifiedTypeName!T;
else
return fullyQualifiedTypename!T;
return fullyQualifiedTypeName!T;
}

/// private
Expand All @@ -601,7 +601,7 @@ private @property string getParameterTypeString(alias F, int i)()
if (is_scope)
prefix = "scope " ~ prefix;

return prefix ~ fullyQualifiedTypename!(T[i]);
return prefix ~ fullyQualifiedTypeName!(T[i]);
}

/// private
Expand Down

0 comments on commit 367c975

Please sign in to comment.