Browse Source

[DOCS] Remove poor link from painless.md (#127544)

Lisa Cawley 5 months ago
parent
commit
0b3397d6a5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/reference/scripting-languages/painless/painless.md

+ 1 - 1
docs/reference/scripting-languages/painless/painless.md

@@ -11,7 +11,7 @@ mapped_pages:
 You can use Painless anywhere scripts are used in Elasticsearch. Painless provides:
 
 * Fast performance: Painless scripts [ run several times faster](https://benchmarks.elastic.co/index.md#search_qps_scripts) than the alternatives.
-* Safety: Fine-grained allowlist with method call/field granularity. See the [Painless API Reference](https://www.elastic.co/guide/en/elasticsearch/painless/current/painless-api-reference.html) for a complete list of available classes and methods.
+* Safety: Fine-grained allowlist with method call/field granularity.
 * Optional typing: Variables and parameters can use explicit types or the dynamic `def` type.
 * Syntax: Extends a subset of Java’s syntax to provide additional scripting language features.
 * Optimizations: Designed specifically for Elasticsearch scripting.