Browse Source

Fix reference to XContentBuilder.string() (#31337)

In 6.3 this was moved to `Strings.toString(XContentBuilder)` as part of the
XContent extraction. This commit fixes the docs to reference the new method.

Resolves #31326
Lee Hinman 7 years ago
parent
commit
4ad334f8e0
1 changed files with 4 additions and 2 deletions
  1. 4 2
      docs/java-api/docs/index_.asciidoc

+ 4 - 2
docs/java-api/docs/index_.asciidoc

@@ -99,11 +99,13 @@ Note that you can also add arrays with `startArray(String)` and
 other XContentBuilder objects.
 
 If you need to see the generated JSON content, you can use the
-`string()` method.
+`Strings.toString()` method.
 
 [source,java]
 --------------------------------------------------
-String json = builder.string();
+import org.elasticsearch.common.Strings;
+
+String json = Strings.toString(builder);
 --------------------------------------------------