From 0ca8f09dbe007d88862b8c958e93f5b9f0c281e7 Mon Sep 17 00:00:00 2001 From: "m. interrupt" Date: Wed, 3 Jan 2024 02:17:53 -0500 Subject: [PATCH] Update README.md 2 spellings fixes --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a6545dc..df04b8b 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,9 @@ USB stack for embedded devices in Rust. The UsbDevice object represents a composite USB device and is the most important object for application implementors. The UsbDevice combines a number of UsbClasses (either custom ones, or -pre-existing ones provided by other crates) and a UsbBus device drives to implement the USB device. +pre-existing ones provided by other crates) and a UsbBus device driver to implement the USB device. -The UsbClass trait can be used to implemented USB classes such as a HID device or a serial port. An +The UsbClass trait can be used to implement USB classes such as a HID device or a serial port. An implementation may also use a custom class if the required functionality isn't covered by a standard class.