Merge pull request #40825 from ClickHouse/fix-typo

Fix typo in docs
This commit is contained in:
Robert Schulze 2022-08-30 23:20:09 +02:00 committed by GitHub
commit d4a1b71b18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,7 +46,7 @@ Binary operations on Decimal result in wider result type (with any order of argu
Rules for scale:
- add, subtract: S = max(S1, S2).
- multuply: S = S1 + S2.
- multiply: S = S1 + S2.
- divide: S = S1.
For similar operations between Decimal and integers, the result is Decimal of the same size as an argument.