From 9799a872c4c8927d96d5c46058b83a90edddc71b Mon Sep 17 00:00:00 2001
From: anon <anon@anon.anon>
Date: Sun, 26 Jan 2025 15:14:20 +0100
Subject: [PATCH] change slogen

---
 README.md    | 2 +-
 remove_all.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 194e8f0..afb7a16 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
 # remove\_all
-> C replication of `std::filesystem::remove_all` of C++17.
+> C imitation of `std::filesystem::remove_all()` from C++17.
 
 ## SYNOPSIS
 
diff --git a/remove_all.h b/remove_all.h
index 8dd38fe..14f2a15 100644
--- a/remove_all.h
+++ b/remove_all.h
@@ -1,7 +1,7 @@
 #ifndef REMOVE_ALL_H
 #define REMOVE_ALL_H
 
-/* C replication of `std::filesystem::remove` of C++17.
+/* C imitation of `std::filesystem::remove_all()` from C++17.
  * Unlike standard C remove(3), it can remove recursively.
  */
 int remove_all(const char * const p);