浏览代码

SQL: [Docs] Fix typo

Add missing closing "`".

Follows: 78a1185549ff7f3229fd2d036567eb2a4f2cf230
Marios Trivyzas 5 年之前
父节点
当前提交
b847742b23
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/reference/sql/limitations.asciidoc

+ 1 - 1
docs/reference/sql/limitations.asciidoc

@@ -118,7 +118,7 @@ SELECT * FROM test GROUP BY age ORDER BY COUNT(*) LIMIT 100;
 It is possible to run the same queries without a `LIMIT` however in that case if the maximum size (*10000*) is passed,
 an exception will be returned as {es-sql} is unable to track (and sort) all the results returned.
 
-Moreover, the aggregation(s) used in the `ORDER BY must be only plain aggregate functions. No scalar
+Moreover, the aggregation(s) used in the `ORDER BY` must be only plain aggregate functions. No scalar
 functions or operators can be used, and therefore no complex columns that combine two ore more aggregate
 functions can be used for ordering. Here are some examples of queries that are *not allowed*: