Skip to content

Commit

Permalink
Don't do append in argument to append
Browse files Browse the repository at this point in the history
  • Loading branch information
manning authored and Stanford NLP committed Dec 29, 2014
1 parent a28325d commit 73022f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/edu/stanford/nlp/classify/Dataset.java
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ public void summaryStatistics() {
public String toSummaryStatistics() {
StringBuilder sb = new StringBuilder();
sb.append("numDatums: ").append(size).append('\n');
sb.append("numDatumsPerLabel: ").append(this.numDatumsPerLabel()+"\n");
sb.append("numDatumsPerLabel: ").append(this.numDatumsPerLabel()).append('\n');
sb.append("numLabels: ").append(labelIndex.size()).append(" [");
Iterator<L> iter = labelIndex.iterator();
while (iter.hasNext()) {
Expand Down

0 comments on commit 73022f4

Please sign in to comment.