Skip to content

Commit cc56a45

Browse files
authored
[Ruleset Engine] Fix concat() documentation
1 parent 031c37f commit cc56a45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/docs/ruleset-engine/rules-language/functions.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,11 @@ You can only use the `cidr6()` function in [custom rules](/waf/custom-rules/) an
102102
### `concat`
103103

104104
{/* prettier-ignore */}
105-
<code>concat(<Type text="String | Integer | Bytes | Array elements" />)</code>: <Type text="String" />
105+
<code>concat(<Type text="String | Bytes | Array elements" />)</code>: <Type text="String" />
106106

107107
Takes a comma-separated list of values. Concatenates the argument values into a single String.
108108

109-
For example, `concat("String1", " ", "String", 2)` will return `"String1 String2"`.
109+
For example, `concat("String1", " ", "String", "2")` will return `"String1 String2"`.
110110

111111
### `decode_base64`
112112

0 commit comments

Comments
 (0)