From 3ae2be8e2b6571f3d123faf6b929959451360810 Mon Sep 17 00:00:00 2001 From: Igor Date: Thu, 27 May 2021 10:29:50 +0300 Subject: [PATCH] fix(Programming Basics - Hello, World - Exercise 5): Shortcuts for line start/end fixed The shortcut links in the description were fixed to match their description: EditorTextStartWithSelection -> EditorLineStartWithSelection EditorTextEndWithSelection -> EditorLineEndWithSelection The decision to fix the links not the descriptions is based on the task itself being to select a line, not the whole text. Closes https://youtrack.jetbrains.com/issue/EDC-413 --- Programming Basics/Hello, World/Exercise 5/task.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Programming Basics/Hello, World/Exercise 5/task.md b/Programming Basics/Hello, World/Exercise 5/task.md index 52f82c87..7f11a677 100644 --- a/Programming Basics/Hello, World/Exercise 5/task.md +++ b/Programming Basics/Hello, World/Exercise 5/task.md @@ -18,8 +18,8 @@ the beginning of a line: |-----------------------------------|-----------------------------------------------------------------------|----------------------------------------------------------------| | Up with selection | &shortcut:EditorUpWithSelection; | Move the caret one line up, selecting the text. | | Right with selection | &shortcut:EditorRightWithSelection; | Move the caret one character to the right, selecting the text. | -| Move to line end with selection | &shortcut:EditorTextEndWithSelection; | Move the caret to the end of line, selecting the text. | -| Move to line start with selection | &shortcut:EditorTextStartWithSelection; | Move the caret to the beginning of line, selecting the text. | +| Move to line end with selection | &shortcut:EditorLineEndWithSelection; | Move the caret to the end of line, selecting the text. | +| Move to line start with selection | &shortcut:EditorLineStartWithSelection; | Move the caret to the beginning of line, selecting the text. | Duplicate the line `println("Hello, Kotlin!")` in the example by selecting it and then copy-pasting it.