]> Trent Huber's Code - cbs.git/commitdiff
More README.md tweaks
authorTrent Huber <trentmhuber@gmail.com>
Tue, 22 Jul 2025 09:38:16 +0000 (05:38 -0400)
committerTrent Huber <trentmhuber@gmail.com>
Tue, 22 Jul 2025 09:38:16 +0000 (05:38 -0400)
README.md

index 117bc2e13c39ed6962b735d940e872ee355f6150..0a07f397674df5da02b3f407b0ce9b7dd0b201dc 100644 (file)
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@ cbs is an extremely lightweight build tool designed specifically for C projects.
 
 ## Overview
 
-To build your project, we first need to make a file called `build.c` which describes what to build.
+To build a project, you first need to make a file called `build.c` which describes what to build.
 
 ```c
 // build.c
@@ -22,7 +22,7 @@ int main(void) {
 }
 ```
 
-Next, we need to compile the build file and run the resulting executable, called `build`.
+Next, compile the build file and run the resulting executable, called `build`.
 
 ```console
 > cc -o build build.c