Browse Source

[DOCS] Remove Wikipedia link from `SUM_OF_SQUARES` SQL function docs (#52398)

Removed the link to Wikipedia as the function is not calculating the sum of squares in this way. More can be found here at this issue:

https://github.com/elastic/elasticsearch/issues/50416
jmceniery 5 years ago
parent
commit
719fa2735f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/reference/sql/functions/aggs.asciidoc

+ 1 - 1
docs/reference/sql/functions/aggs.asciidoc

@@ -616,7 +616,7 @@ SUM_OF_SQUARES(field_name) <1>
 
 *Description*:
 
-Returns the https://en.wikipedia.org/wiki/Total_sum_of_squares[sum of squares] of input values in the field `field_name`.
+Returns the sum of squares of input values in the field `field_name`.
 
 ["source","sql",subs="attributes,macros"]
 --------------------------------------------------