diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-09-12 15:02:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-12 15:02:22 +0200 |
commit | aebf4fb48cc9cb1a589dad998a773d058c3b3e1f (patch) | |
tree | 1b419331959fda721d9fe81c5442c8c4118e0261 /core | |
parent | 017e6e8a4c310dfd5cb6be2e72009ff2f24fcbcd (diff) | |
parent | daa66cd5c2cb699f037032165367c236dfe42e95 (diff) |
Merge pull request #11106 from hpvb/documentation-fix-poolarrays
Correct the Pool*Array documentation
Diffstat (limited to 'core')
-rw-r--r-- | core/variant_call.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/variant_call.cpp b/core/variant_call.cpp index d5bd79c890..19d9b0297f 100644 --- a/core/variant_call.cpp +++ b/core/variant_call.cpp @@ -1623,7 +1623,7 @@ void register_variant_methods() { ADDFUNC2(POOL_STRING_ARRAY, INT, PoolStringArray, insert, INT, "idx", STRING, "string", varray()); ADDFUNC1(POOL_STRING_ARRAY, NIL, PoolStringArray, resize, INT, "idx", varray()); ADDFUNC0(POOL_STRING_ARRAY, NIL, PoolStringArray, invert, varray()); - ADDFUNC1(POOL_STRING_ARRAY, STRING, PoolStringArray, join, STRING, "string", varray()); + ADDFUNC1(POOL_STRING_ARRAY, STRING, PoolStringArray, join, STRING, "delimiter", varray()); ADDFUNC0(POOL_VECTOR2_ARRAY, INT, PoolVector2Array, size, varray()); ADDFUNC2(POOL_VECTOR2_ARRAY, NIL, PoolVector2Array, set, INT, "idx", VECTOR2, "vector2", varray()); |