From f9371000aacfa6e2414cbc848fc2a6ff62895551 Mon Sep 17 00:00:00 2001 From: Svetlana Isakova Date: Tue, 20 Jul 2021 13:22:31 +0200 Subject: [PATCH] Fixed inaccuracy: characters are stored as Unicode values https://github.com/svtk/AtomicKotlinCourse/issues/24 --- Programming Basics/Data Types/Exercise 3/task.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Programming Basics/Data Types/Exercise 3/task.md b/Programming Basics/Data Types/Exercise 3/task.md index 7b2ca27c..f23719d4 100644 --- a/Programming Basics/Data Types/Exercise 3/task.md +++ b/Programming Basics/Data Types/Exercise 3/task.md @@ -14,7 +14,7 @@ You can open the hint within IntelliJ IDEA to understand the results.
Characters are stored as numbers corresponding to their -[ASCII codes](https://en.wikipedia.org/wiki/ASCII), so adding an integer to a -character produces a new character corresponding to the new code value. +[Unicode](https://en.wikipedia.org/wiki/Unicode) values, so adding an integer to +a character produces a new character corresponding to the new code value.