From f4a4ce8aa7ee9c552b6fb111dde601af8c924369 Mon Sep 17 00:00:00 2001 From: CharlesCNorton <135471798+CharlesCNorton@users.noreply.github.com> Date: Thu, 24 Jul 2025 08:10:59 -0400 Subject: [PATCH] two typo fix Fixed two grammatical errors: 1. Changed "handle" to "handles" in the system architecture section - Original: "It runs Lua, as well as handle Bluetooth networking..." - Fixed: "It runs Lua, as well as handles Bluetooth networking..." - Explanation: The subject "It" (referring to nRF52) requires the third-person singular verb form "handles" to maintain subject-verb agreement. 2. Changed "many" to "may" in the debugging section - Original: "You many need to unlock the device..." - Fixed: "You may need to unlock the device..." - Explanation: "Many" is a determiner/adjective meaning "a large number of", while "may" is a modal verb expressing possibility. The context requires the modal verb to indicate that unlocking might be necessary. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 07a45781..6e9a4a90 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Welcome to the complete codebase of the Frame hardware. For regular usage, check The codebase is split into three sections. The **nRF52 Application**, the **nRF52 Bootloader**, and the **FPGA RTL**. -The nRF52 is designed to handle the overall system operation. It runs Lua, as well as handle Bluetooth networking, AI tasks and power management. The FPGA meanwhile, simply handles acceleration of the graphics and camera. +The nRF52 is designed to handle the overall system operation. It runs Lua, as well as handles Bluetooth networking, AI tasks and power management. The FPGA meanwhile, simply handles acceleration of the graphics and camera. ![Frame system architecture diagram](docs/diagrams/frame-system-architecture.drawio.png) @@ -49,7 +49,7 @@ The nRF52 is designed to handle the overall system operation. It runs Lua, as we Try running the `Build` task. The project should build normally. - You many need to unlock the device by using the `Erase` task before programming or debugging. + You may need to unlock the device by using the `Erase` task before programming or debugging. 1. To enable IntelliSense, be sure to select the correct compiler from within VSCode. `Ctrl-Shift-P` (`Cmd-Shift-P` on MacOS) → `C/C++: Select IntelliSense Configuration` → `Use arm-none-eabi-gcc`.