diff options
author | Mattes D <github@xoft.cz> | 2020-01-03 14:32:36 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2020-01-07 06:53:17 +0100 |
commit | e234fbdafe4f5cbd114a35570709eebc0626e201 (patch) | |
tree | 0416c524d01ff7fee0cb69fa0eb61235b96f0864 | |
parent | ProtocolRecognizer: Updated to unique_ptr. (diff) | |
download | cuberite-e234fbdafe4f5cbd114a35570709eebc0626e201.tar cuberite-e234fbdafe4f5cbd114a35570709eebc0626e201.tar.gz cuberite-e234fbdafe4f5cbd114a35570709eebc0626e201.tar.bz2 cuberite-e234fbdafe4f5cbd114a35570709eebc0626e201.tar.lz cuberite-e234fbdafe4f5cbd114a35570709eebc0626e201.tar.xz cuberite-e234fbdafe4f5cbd114a35570709eebc0626e201.tar.zst cuberite-e234fbdafe4f5cbd114a35570709eebc0626e201.zip |
-rw-r--r-- | src/StringUtils.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/StringUtils.h b/src/StringUtils.h index 5fb45a879..428578c03 100644 --- a/src/StringUtils.h +++ b/src/StringUtils.h @@ -142,7 +142,8 @@ The order of items doesn't change, only the duplicates are removed. If a_Strings1 contains duplicates, the result will still contain those duplicates. */ extern AStringVector MergeStringVectors(const AStringVector & a_Strings1, const AStringVector & a_Strings2); -/** Concatenates the specified strings into a single string, separated by the specified separator. */ +/** Concatenates the specified strings into a single string, separated by the specified separator character. +Use StringJoin() if you need multiple separator characters. */ extern AString StringsConcat(const AStringVector & a_Strings, char a_Separator); /** Converts a string into a float. Returns false if the conversion fails. */ |