style: rename "tools" -> "tools.h"

This commit is contained in:
DarkSharpness
2024-07-23 11:07:32 +08:00
parent ec8b3895ff
commit 192de26ad6
3 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#include "../include/tools" #include "../include/tools.h"
#include <iostream> #include <iostream>
bool reset; bool reset;

View File

@ -18,7 +18,7 @@ e.g. `g++ -std=c++2b ...`
This is a header-only library, which means you just need to include all your required headers in your project. This is a header-only library, which means you just need to include all your required headers in your project.
We strongly recommend you to include `include/tools` to simply include all the headers. We strongly recommend you to include `include/tools.h` to simply include all the headers.
```cpp ```cpp
#include "include/tools.h" #include "include/tools.h"