From 7fdbed62e54b804e2c12b86a2c2bab12f61065df Mon Sep 17 00:00:00 2001 From: paxakor <paxakor@yandex-team.ru> Date: Thu, 10 Feb 2022 16:47:32 +0300 Subject: Restoring authorship annotation for <paxakor@yandex-team.ru>. Commit 1 of 2. --- util/string/vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util/string/vector.h') diff --git a/util/string/vector.h b/util/string/vector.h index e36c348bbe..2495ed5b64 100644 --- a/util/string/vector.h +++ b/util/string/vector.h @@ -113,7 +113,7 @@ inline TString JoinVectorIntoString(const TVector<T>& v, const TStringBuf delim) template <typename T> inline TString JoinVectorIntoString(const TVector<T>& v, size_t index, size_t count, const TStringBuf delim) { - Y_ASSERT(index + count <= v.size() && "JoinVectorIntoString(): index or count out of range"); + Y_ASSERT(index + count <= v.size() && "JoinVectorIntoString(): index or count out of range"); return JoinStrings(v.begin() + index, v.begin() + index + count, delim); } -- cgit v1.2.3