OpenSearch/docs/java-api
Nik Everett 16a92689fc
Docs: Drop inline callouts from the java API (#39932) (#40693)
There is a single example in the Java API docs that contains an inline
callout that is incompatible with Asciidoctor:

```
client.prepareUpdate("ttl", "doc", "1")
        .setScript(new Script(
            "ctx._source.gender = \"male\"" <1> , ScriptService.ScriptType.INLINE, null, null))
        .get();
```

This rewrites the example to use an Asciidoctor compatible end of line
callout. It also looks nicer to me because it fits better on the page.

```
client.prepareUpdate("ttl", "doc", "1")
        .setScript(new Script(
            "ctx._source.gender = \"male\"", <1>
            ScriptService.ScriptType.INLINE, null, null))
        .get();
```
2019-04-01 13:02:23 -04:00
..
admin Make sure to use the type _doc in the REST documentation. (#34662) 2018-10-22 11:54:04 -07:00
aggregations Migrate scripted metric aggregation scripts to ScriptContext design (#30111) 2018-06-25 12:01:33 +01:00
docs Docs: Drop inline callouts from the java API (#39932) (#40693) 2019-04-01 13:02:23 -04:00
query-dsl Deprecate reference to _type in lookup queries (#37016) 2019-01-08 18:46:41 -08:00
aggs.asciidoc removing duplicated parenthese open (#17975) 2016-04-26 20:13:08 +02:00
client.asciidoc Deprecate the transport client in favour of the high-level REST client (#27085) 2017-12-01 12:24:16 +01:00
docs.asciidoc Added minimal docs for reindex api in java-api docs 2018-03-16 07:42:48 +01:00
index.asciidoc Docs: Fix link to transport client 2018-12-10 16:34:54 -05:00
query-dsl.asciidoc Build that java api docs from a test (#24354) 2017-05-02 13:00:56 -04:00
search.asciidoc Make hits.total an object in the search response (#35849) 2018-12-05 19:49:06 +01:00