From 7040f03b549c4f21d38c842cc2dbb839e3e6ec2a Mon Sep 17 00:00:00 2001 From: Geoffrey M Gunter Date: Sun, 15 Aug 2021 18:43:32 -0700 Subject: [PATCH] Fix typo in docs/matchers.md There were a few instances in matchers.md where header files erroneously had a .h file extension instead of .hpp --- docs/matchers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/matchers.md b/docs/matchers.md index 7721bf81..6fdb15bf 100644 --- a/docs/matchers.md +++ b/docs/matchers.md @@ -58,7 +58,7 @@ to a use-after-free (UAF): ```cpp #include -#include +#include TEST_CASE("Bugs, bugs, bugs", "[Bug]"){ std::string str = "Bugs as a service"; @@ -299,7 +299,7 @@ within certain range. We will call it `IsBetweenMatcher`: ```c++ #include -#include +#include // ...