Skip to content

Commit 943dbb8

Browse files
committed
Fix resource description of VerifyingIndexOutput.
1 parent ac71f1b commit 943dbb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/elasticsearch/index/store/VerifyingIndexOutput.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public abstract class VerifyingIndexOutput extends IndexOutput {
3333

3434
/** Sole constructor */
3535
VerifyingIndexOutput(IndexOutput out) {
36-
super("VerifyingIndexOutput(in=" + out + ")");
36+
super("VerifyingIndexOutput(out=" + out + ")");
3737
this.out = out;
3838
}
3939

0 commit comments

Comments
 (0)