Fixed typo in javadoc
This commit is contained in:
parent
0dfb55d72c
commit
6f915549c6
|
@ -117,10 +117,10 @@ public final class XContentBuilder implements BytesStream, Releasable {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a new builder using the provided xcontent, an OutputStream and
|
* Constructs a new builder using the provided xcontent, an OutputStream and
|
||||||
* some filters. If filters are specified and inclusiveFilters is true, only
|
* some filters. If {@code filters} are specified and {@code inclusive} is
|
||||||
* those values matching a filter will be written to the output stream. If
|
* true, only those values matching a filter will be written to the output
|
||||||
* inclusiveFilters is false, those matching will be excluded. Make sure to
|
* stream. If {@code inclusive} is false, those matching will be excluded.
|
||||||
* call {@link #close()} when the builder is done with.
|
* Make sure to call {@link #close()} when the builder is done with.
|
||||||
*/
|
*/
|
||||||
public XContentBuilder(XContent xContent, OutputStream bos, String[] filters, boolean inclusive) throws IOException {
|
public XContentBuilder(XContent xContent, OutputStream bos, String[] filters, boolean inclusive) throws IOException {
|
||||||
this.bos = bos;
|
this.bos = bos;
|
||||||
|
|
Loading…
Reference in New Issue