From dfb19d4a1a5a588bdad908c70c9bac1fb339edab Mon Sep 17 00:00:00 2001 From: Abdelrahman Said Date: Sat, 30 Dec 2023 20:07:59 +0000 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dce4038..f93d052 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Exploring different ideas for implementing generics in C. [02_macros](./02_macros) is an implementation that uses simple macros to define 2D and 3D vectors for different data types. -[03_xmacros](./03_xmacros) is an implementation that relies on X macros to allow for defining any N-dimensional vector for different data types. In this case, it is only 2D and 3D vectors, but it can be easily expanded to other dimensions. +[03_xmacros](./03_xmacros) is an implementation that relies on X macros to allow for defining any N-dimensional vector for different data types. In this case, only 2D and 3D vectors were defined, but it can be easily expanded to other dimensions. ## General assessment of the different techniques