From d00f4cf13c2f9b4f8abd6dcca39d80417a25dde0 Mon Sep 17 00:00:00 2001 From: Trent Huber Date: Tue, 22 Jul 2025 05:38:16 -0400 Subject: [PATCH] More README.md tweaks --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.51.0