From e6753b5a7ac87859d6000bd38eb21397a99224ce Mon Sep 17 00:00:00 2001 From: PB Date: Sat, 10 Aug 2019 15:09:59 +0200 Subject: [PATCH] Clarify wxArrayString::Insert() description --- interface/wx/arrstr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/wx/arrstr.h b/interface/wx/arrstr.h index 624b7f0122..8e0f98089d 100644 --- a/interface/wx/arrstr.h +++ b/interface/wx/arrstr.h @@ -143,8 +143,8 @@ public: /** Inserts the given number of @a copies of @a str in the array before the - position @a nIndex. Thus, for example, to insert the string in the beginning of - the array you would write: + array element at the position @a nIndex. Thus, for example, to insert + the string in the beginning of the array you would write: @code Insert("foo", 0);