Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove the new line after @startuml in generated pu file
  • Loading branch information
byzheng committed Jan 14, 2015
1 parent 081e3a9 commit edf8dbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plantuml.cpp
Expand Up @@ -43,7 +43,7 @@ QCString writePlantUMLSource(const QCString &outDir,const QCString &fileName,con
{
err("Could not open file %s for writing\n",baseName.data());
}
QCString text = "@startuml\n";
QCString text = "@startuml";
text+=content;
text+="@enduml\n";
file.writeBlock( text, text.length() );
Expand Down

0 comments on commit edf8dbb

Please sign in to comment.