Merged bug fix from Stable into Unstable

This commit is contained in:
Eric Banks 2012-11-09 08:35:51 -05:00
commit ee776e996a
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ public class RecalDatum {
@Override
public String toString() {
return String.format("%.2f,%,2f,%.2f", getNumObservations(), getNumMismatches(), getEmpiricalQuality());
return String.format("%.2f,%.2f,%.2f", getNumObservations(), getNumMismatches(), getEmpiricalQuality());
}
public String stringForCSV() {