diff options
author | alextarazanov <alextarazanov@yandex-team.com> | 2022-11-07 08:53:06 +0300 |
---|---|---|
committer | alextarazanov <alextarazanov@yandex-team.com> | 2022-11-07 08:53:06 +0300 |
commit | a18f362530891f312ab6fd30d28853ca1d81e20d (patch) | |
tree | bb2eee11022b5951c073ba415165e03f5800346f | |
parent | 5ec789e159bb7adb53e1194f338735417741ab69 (diff) | |
download | ydb-a18f362530891f312ab6fd30d28853ca1d81e20d.tar.gz |
[review] [YDB] Check "fixed multiple typos in the docs, reported on Github as #105" translate
-
-rw-r--r-- | ydb/docs/en/core/best_practices/_includes/secondary_indexes.md | 2 | ||||
-rw-r--r-- | ydb/docs/en/core/yql/reference/yql-core/syntax/_includes/lexer.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ydb/docs/en/core/best_practices/_includes/secondary_indexes.md b/ydb/docs/en/core/best_practices/_includes/secondary_indexes.md index dfd2a008137..acf6d3c9153 100644 --- a/ydb/docs/en/core/best_practices/_includes/secondary_indexes.md +++ b/ydb/docs/en/core/best_practices/_includes/secondary_indexes.md @@ -42,7 +42,7 @@ FROM orders VIEW idx_customer AS o WHERE o.id_customer = $customer_id ``` -where `idx_customer` is the name of the secondary index on the `orders` table with the `id_customer` field specified first. +Where `idx_customer` is the name of the secondary index on the `orders` table with the `id_customer` field specified first. If no `VIEW` section is specified, making a query like this requires a full scan of the `orders` table . diff --git a/ydb/docs/en/core/yql/reference/yql-core/syntax/_includes/lexer.md b/ydb/docs/en/core/yql/reference/yql-core/syntax/_includes/lexer.md index ea92d1c75cf..614c0b16bbf 100644 --- a/ydb/docs/en/core/yql/reference/yql-core/syntax/_includes/lexer.md +++ b/ydb/docs/en/core/yql/reference/yql-core/syntax/_includes/lexer.md @@ -1,7 +1,7 @@ # Lexical structure -The {% if feature_mapreduce %}program {% else %}query {% endif %} in the YQL language is a valid UTF-8 text consisting of _commands_ (statements) separated by semicolons (`;`). +The {% if feature_mapreduce %}program{% else %}query{% endif %} in the YQL language is a valid UTF-8 text consisting of _commands_ (statements) separated by semicolons (`;`). The last semicolon can be omitted. Each command is a sequence of _tokens_ that are valid for this command. Tokens can be _keywords_, _IDs_, _literals_, and so on. |