From: Trent Huber Date: Tue, 22 Jul 2025 09:38:16 +0000 (-0400) Subject: More README.md tweaks X-Git-Url: https://trenthuber.com/code?a=commitdiff_plain;h=d00f4cf13c2f9b4f8abd6dcca39d80417a25dde0;p=cbs.git More README.md tweaks --- diff --git a/README.md b/README.md index 117bc2e..0a07f39 100644 --- 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