From 6f915549c655b660510035f93bb3db239a26dc56 Mon Sep 17 00:00:00 2001 From: Konrad Beiske Date: Wed, 3 Feb 2016 12:18:05 +0100 Subject: [PATCH] Fixed typo in javadoc --- .../elasticsearch/common/xcontent/XContentBuilder.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/main/java/org/elasticsearch/common/xcontent/XContentBuilder.java b/core/src/main/java/org/elasticsearch/common/xcontent/XContentBuilder.java index fe11cec5ba9..a82a747624b 100644 --- a/core/src/main/java/org/elasticsearch/common/xcontent/XContentBuilder.java +++ b/core/src/main/java/org/elasticsearch/common/xcontent/XContentBuilder.java @@ -117,10 +117,10 @@ public final class XContentBuilder implements BytesStream, Releasable { /** * Constructs a new builder using the provided xcontent, an OutputStream and - * some filters. If filters are specified and inclusiveFilters is true, only - * those values matching a filter will be written to the output stream. If - * inclusiveFilters is false, those matching will be excluded. Make sure to - * call {@link #close()} when the builder is done with. + * some filters. If {@code filters} are specified and {@code inclusive} is + * true, only those values matching a filter will be written to the output + * stream. If {@code inclusive} is false, those matching will be excluded. + * Make sure to call {@link #close()} when the builder is done with. */ public XContentBuilder(XContent xContent, OutputStream bos, String[] filters, boolean inclusive) throws IOException { this.bos = bos;