diff options
author | robot-piglet <[email protected]> | 2025-08-04 18:37:10 +0300 |
---|---|---|
committer | robot-piglet <[email protected]> | 2025-08-04 18:46:19 +0300 |
commit | c0bc4e708e27a153b958eed0f42d2a67f245b288 (patch) | |
tree | 3788f1edf987a556d8746622ef72f156292befbe /yql/essentials/docs/en/syntax | |
parent | 31222d1a11563c9dd9bbb13e0962752831d5fc0c (diff) |
Intermediate changes
commit_hash:4e13279581564769e316002185fdced46ebba9ab
Diffstat (limited to 'yql/essentials/docs/en/syntax')
-rw-r--r-- | yql/essentials/docs/en/syntax/declare.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yql/essentials/docs/en/syntax/declare.md b/yql/essentials/docs/en/syntax/declare.md index 93cd978cd41..6f92a9c0b3a 100644 --- a/yql/essentials/docs/en/syntax/declare.md +++ b/yql/essentials/docs/en/syntax/declare.md @@ -9,11 +9,11 @@ Passing of parameters is supported in the SDK, CLI, and graphical interfaces. ## Syntax ```yql -DECLARE $named-node AS data_type; +DECLARE $named_node AS data_type; ``` 1. `DECLARE` keyword. -1. `$named-node`: The name by which you can access the passed value. It must start with `$`. +1. `$named_node`: The name by which you can access the passed value. It must start with `$`. 1. `AS` keyword. 1. `data_type` is the data type [represented as a string in the accepted format](../types/type_string.md). |