Skip to content

Commit 2aec68e

Browse files
committed
Fix style check
1 parent 5354110 commit 2aec68e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Functions/byteSwap.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ The below example can be worked out in the following manner:
7070
1. Convert the base-10 integer to its equivalent hexadecimal format in big-endian format, i.e. 3351772109 -> C7 C7 FB CD (4 bytes)
7171
2. Reverse the bytes, i.e. C7 C7 FB CD -> CD FB C7 C7
7272
3. Convert the result back to an integer assuming big-endian, i.e. CD FB C7 C7 -> 3455829959
73-
One use case of this function is reversing IPv4s:
73+
One use case of this function is reversing IPv4s:
7474
7575
```result
7676
┌─toIPv4(byteSwap(toUInt32(toIPv4('205.251.199.199'))))─┐

src/Functions/intDiv.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ in the range of the dividend, or when dividing a minimal negative number by minu
139139
FunctionDocumentation::ReturnedValue returned_value = "Result of integer division of a and b";
140140
FunctionDocumentation::Example example1 = {"Integer division of two floats", R"(
141141
SELECT
142-
intDiv(toFloat64(1), 0.001) AS res,
143-
toTypeName(res)
142+
intDiv(toFloat64(1), 0.001) AS res,
143+
toTypeName(res)
144144
)", R"(
145145
┌──res─┬─toTypeName(intDiv(toFloat64(1), 0.001))─┐
146146
│ 1000 │ Int64 │

0 commit comments

Comments
 (0)