jfeliu007 / goplantuml

PlantUML Class Diagram Generator for golang projects
MIT License
1.78k stars 167 forks source link

Use Fprintln instead of Fprint for printing errors #96

Closed MorrisLaw closed 4 years ago

MorrisLaw commented 4 years ago

This PR should fix the issue noted in #93. This PR replaces Fprint with Fprintln so that error messages get printed out as it's own line.

Also fixes a typo, changing goplantum -> goplantuml.

codecov[bot] commented 4 years ago

Codecov Report

Merging #96 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff            @@
##            master       #96   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            5         5           
  Lines          583       583           
=========================================
  Hits           583       583           

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 0d72473...37274be. Read the comment docs.

jfeliu007 commented 4 years ago

Looks Good.