small cosmetic changes in docs

This commit is contained in:
Maxim Dergousov 2024-08-23 12:50:18 +03:00
parent 69f6ea5083
commit 8c4329964f

View File

@ -695,7 +695,7 @@ Produces [RIPEMD-160](https://en.wikipedia.org/wiki/RIPEMD) hash value.
**Syntax**
```sql
ripeMD160('input')
ripeMD160(input)
```
**Parameters**
@ -707,6 +707,7 @@ ripeMD160('input')
- A [UInt256](../data-types/int-uint.md) hash value where the 160-bit RIPEMD-160 hash is stored in the first 20 bytes. The remaining 12 bytes are zero-padded.
**Example**
Use the [hex](../functions/encoding-functions.md/#hex) function to represent the result as a hex-encoded string.
Query: