mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-10-31 20:27:11 +01:00 
			
		
		
		
	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
This commit is contained in:
		 Geoffrey M Gunter
					Geoffrey M Gunter
				
			
				
					committed by
					
						 Martin Hořeňovský
						Martin Hořeňovský
					
				
			
			
				
	
			
			
			 Martin Hořeňovský
						Martin Hořeňovský
					
				
			
						parent
						
							1554251f97
						
					
				
				
					commit
					7040f03b54
				
			| @@ -58,7 +58,7 @@ to a use-after-free (UAF): | ||||
|  | ||||
| ```cpp | ||||
| #include <catch2/catch_test_macros.hpp> | ||||
| #include <catch2/matchers/catch_matchers_string.h> | ||||
| #include <catch2/matchers/catch_matchers_string.hpp> | ||||
|  | ||||
| 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<T>`: | ||||
|  | ||||
| ```c++ | ||||
| #include <catch2/catch_test_macros.hpp> | ||||
| #include <catch2/matchers/catch_matchers.h> | ||||
| #include <catch2/matchers/catch_matchers.hpp> | ||||
| // ... | ||||
|  | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user