Fix resource description of VerifyingIndexOutput.

This commit is contained in:
Adrien Grand 2014-12-02 19:26:17 +01:00
parent ac71f1b70a
commit 943dbb8ab6
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ public abstract class VerifyingIndexOutput extends IndexOutput {
/** Sole constructor */
VerifyingIndexOutput(IndexOutput out) {
super("VerifyingIndexOutput(in=" + out + ")");
super("VerifyingIndexOutput(out=" + out + ")");
this.out = out;
}