Skip to content
This repository has been archived by the owner on May 21, 2018. It is now read-only.

Commit

Permalink
Missing space
Browse files Browse the repository at this point in the history
  • Loading branch information
cskeppstedt committed Apr 9, 2013
1 parent 9c5a05a commit 85d42fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions T4TS/Outputs/InterfaceOutputAppender.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ private void BeginInterface(TypeScriptInterface tsInterface)
AppendIndented("interface " + tsInterface.Name);
else
AppendIndented("export interface " + tsInterface.Name);

if (tsInterface.Parent != null)
Output.Append("extends " + (tsInterface.Parent.Module.IsGlobal ? "/* global interface */" : tsInterface.Parent.Module.QualifiedName + ".") + tsInterface.Parent.Name);
Output.Append(" extends " + (tsInterface.Parent.Module.IsGlobal ? "" : tsInterface.Parent.Module.QualifiedName + ".") + tsInterface.Parent.Name);

Output.AppendLine(" {");
}

Expand Down

0 comments on commit 85d42fc

Please sign in to comment.