Skip to content

Commit 9028e4b

Browse files
committed
Correct typos in comments and documentation
1 parent dd5ca23 commit 9028e4b

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
image:https://github.com/{repository-owner}/{repository-name}/actions/workflows/spell-check.yml/badge.svg["Spell Check status", link="https://github.com/{repository-owner}/{repository-name}/actions/workflows/spell-check.yml"]
77

8-
This library allows an Arduino board with USB capabilities to act as a Keyboard.
8+
This library allows an Arduino board with USB capabilities to act as a keyboard.
99

1010
For more information about this library please visit us at
1111
https://www.arduino.cc/reference/en/language/functions/usb/keyboard/

examples/Serial/Serial.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
1717
This example code is in the public domain.
1818
19-
http://www.arduino.cc/en/Tutorial/KeyboardSerial
19+
https://www.arduino.cc/en/Tutorial/BuiltInExamples/KeyboardSerial
2020
*/
2121

2222
#include "Keyboard.h"

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name=Keyboard
22
version=1.0.2
33
author=Arduino
44
maintainer=Arduino <[email protected]>
5-
sentence=Allows an Arduino/Genuino board with USB capabilites to act as a Keyboard.
5+
sentence=Allows an Arduino board with USB capabilities to act as a Keyboard.
66
paragraph=This library plugs on the HID library. It can be used with or without other HID-based libraries (Mouse, Gamepad etc)
77
category=Device Control
88
url=https://www.arduino.cc/reference/en/language/functions/usb/keyboard/

src/Keyboard.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,4 +335,3 @@ size_t Keyboard_::write(const uint8_t *buffer, size_t size) {
335335
Keyboard_ Keyboard;
336336

337337
#endif
338-

src/Keyboard.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
#define KEY_F24 0xFB
8585

8686

87-
// Low level key report: up to 6 keys and shift, ctrl etc at once
87+
// Low level key report: up to 6 keys and shift, ctrl etc at once
8888
typedef struct
8989
{
9090
uint8_t modifiers;
@@ -111,4 +111,3 @@ extern Keyboard_ Keyboard;
111111

112112
#endif
113113
#endif
114-

0 commit comments

Comments
 (0)