Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Joern Weissenborn committed Oct 11, 2019
1 parent f1503b2 commit 2481149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glotaran/analysis/result.py
Expand Up @@ -237,7 +237,7 @@ def markdown(self, with_model=True) -> str:
string += f"{self.red_chisqr:.2e} |".rjust(lr)
string += "\n"
string += "Root Mean Square Error |".rjust(ll)
string += f"{self.root_mean_sqare_error:.2e} |".rjust(lr)
string += f"{self.root_mean_square_error:.2e} |".rjust(lr)
string += "\n"

if with_model:
Expand Down

0 comments on commit 2481149

Please sign in to comment.