Skip to content

Commit 8c498c1

Browse files
committed
Clarify the end of lines sent by Keyboard.println
There is no such thing as the "newline" or "carriage return" keys. Instead, Keyboard.println() hits the Return key, more commonly known as the Enter key.
1 parent dc14579 commit 8c498c1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: Language/Functions/USB/Keyboard/keyboardPrintln.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ title: Keyboard.println()
1414

1515
[float]
1616
=== Description
17-
Sends one or more keystrokes to a connected computer, followed by a newline and carriage return.
17+
Sends one or more keystrokes to a connected computer, followed by a keystroke on the Enter key.
1818

1919
`Keyboard.println()` must be called after initiating link:../keyboardbegin[Keyboard.begin()].
2020
[%hardbreaks]
@@ -29,8 +29,8 @@ Sends one or more keystrokes to a connected computer, followed by a newline and
2929

3030
[float]
3131
=== Parameters
32-
`character`: a char or int to be sent to the computer as a keystroke, followed by newline and carriage return. +
33-
`characters`: a string to be sent to the computer as keystrokes, followed by a newline and carriage return.
32+
`character`: a char or int to be sent to the computer as a keystroke, followed by Enter. +
33+
`characters`: a string to be sent to the computer as keystrokes, followed by Enter.
3434

3535

3636
[float]

0 commit comments

Comments
 (0)