From cc5ff30bcfb29560b1515bdd24818ddf35f2a024 Mon Sep 17 00:00:00 2001 From: Dreamy-Z3r0 <34434717+Dreamy-Z3r0@users.noreply.github.com> Date: Tue, 28 Jun 2022 13:07:41 +0700 Subject: [PATCH] Modification of Returns section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "The n’th character of the String" means the returned char is at index n+1 of the String, which is an incorrect description of the output. --- Language/Variables/Data Types/String/Functions/charAt.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Language/Variables/Data Types/String/Functions/charAt.adoc b/Language/Variables/Data Types/String/Functions/charAt.adoc index a546ddd01..cb571e95a 100644 --- a/Language/Variables/Data Types/String/Functions/charAt.adoc +++ b/Language/Variables/Data Types/String/Functions/charAt.adoc @@ -35,7 +35,7 @@ Access a particular character of the String. [float] === Returns -The n'th character of the String. +The character at index n of the String. -- // OVERVIEW SECTION ENDS