From 6d333b8dcb2ecf18e2ad7a2bcf6dfcd8947b9616 Mon Sep 17 00:00:00 2001
From: Honza Kubita <93735669+HonzaKubita@users.noreply.github.com>
Date: Fri, 10 Jan 2025 16:02:59 +0100
Subject: [PATCH] Fix typo in how_to_use.md

Fixed a typo in the file name of CMakeLists.txt
---
 how_to_use.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/how_to_use.md b/how_to_use.md
index f230bb1..129ec37 100644
--- a/how_to_use.md
+++ b/how_to_use.md
@@ -50,7 +50,7 @@ Lets add some very basic code to the file:
 
 This code will print "Hello World!" to the screen each frame. This may seem complex at first, but the `exit_callback`, `callback_thread` and `setup_callbacks` are just there to make the home button work and can be reused for any project. They only have to be run once. The `PSP_MODULE_INFO` is required and just contains the name of the software. `PSP_MAIN_THREAD_ATTR` will be set like this for every program. Only the content of the `main` function really matters here.
 
-Now add an aditional file called `CMakLists.txt`. Make sure the case matches, `cmakelists.txt` is not valid.
+Now add an aditional file called `CMakeLists.txt`. Make sure the case matches, `cmakelists.txt` is not valid.
 
 Add the following lines to `CMakeLists.txt`: