From fa4311c1311dbfeaacdb1c92690e911698d55bf7 Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Fri, 2 Jun 2023 16:26:05 -0600 Subject: [PATCH] README.md grammar --- C/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/C/README.md b/C/README.md index 53ee40aa..e7504a45 100644 --- a/C/README.md +++ b/C/README.md @@ -2,9 +2,9 @@ This repository contains a few implementations of a simple botec (back-of-the-envelope) calculation in C: -- In the folder C-01-simple/, you can see a simple implementation, which passes large arrays +- In the folder C-01-simple/, you can see a simple implementation, which passes large arrays around - In the folder C-02-better-algorithm-one-thread/ you can see a better implementations, that passes around pointers to functions, which makes the implementation more efficient -- In the top level, you can see an implementation that uses the better implementation in C-02..., and that also implements multithreading using OpenMP +- The top level samples.c uses the algorithm improvements in C-02..., and also implements multithreading using OpenMP ## To do