Skip to content

Commit f0d7595

Browse files
committed
minor: Improve 'concat' builtin documentation
1 parent e6dd323 commit f0d7595

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lkql_jit/language/src/main/java/com/adacore/lkql_jit/built_ins/BuiltInFunctions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ protected String executeOnString(String fileName) {
271271

272272
@BuiltInFunction(
273273
name = "concat",
274-
doc = "Given a list of lists or strings, return a concatenated list or string"
274+
doc = "Given a list, return the result of the concatenation of all its elements"
275275
)
276276
abstract static class ConcatExpr extends BuiltInBody {
277277

user_manual/generated/std.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Builtin functions
3838

3939
.. function:: concat(list)
4040

41-
Given a list of lists or strings, return a concatenated list or string
41+
Given a list, return the result of the concatenation of all its elements
4242

4343
.. function:: map(iterable, function)
4444

0 commit comments

Comments
 (0)