From 19167552ce17ee10b975b1439c1f4dcf8915e0f2 Mon Sep 17 00:00:00 2001 From: Leto Date: Mon, 23 Dec 2024 22:15:48 +0100 Subject: [PATCH] Fixed header file name in readme --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9d74727..bb99eb9 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,9 @@ LeMA will eventually be used for graphical and machine learning usage in my othe git clone https://git.letonet.fr/gitea_admin/lema.git ``` -2. Include the `lema.h` file in your project. +2. Include the `matrices.h` file in your project. ```cpp - #include "lema.h" + #include "matrices.h" ``` That's it! You're ready to use Lema. @@ -31,7 +31,7 @@ That's it! You're ready to use Lema. #### Creating a Matrix ```cpp -#include "lema.h" +#include "matrices.h" #include int main() { @@ -44,7 +44,7 @@ int main() { #### Matrix Addition ```cpp -#include "lema.h" +#include "matrices.h" #include int main() { @@ -64,7 +64,7 @@ int main() { #### Matrix Multiplication ```cpp -#include "lema.h" +#include "matrices.h" #include int main() {