From ee3bbecf51b56545670782114ac6c58e756ea62d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Mon, 25 Apr 2022 21:33:05 +0200 Subject: [PATCH] Improve include guard docs in contributing.md --- docs/contributing.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/contributing.md b/docs/contributing.md index 1b84f095..bf814f27 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -296,9 +296,9 @@ Specifically, every source file should start with the licence header: ``` The include guards for header files should follow the pattern `{FILENAME}_INCLUDED`. -This means that for file `catch_matchers_foo`, the include guard should -be `CATCH_MATCHERS_FOO_INCLUDED`, for `catch_generators_bar`, the include -guard should be `CATCH_GENERATORS_BAR_INCLUDED`, and so on. +This means that for file `catch_matchers_foo.hpp`, the include guard should +be `CATCH_MATCHERS_FOO_HPP_INCLUDED`, for `catch_generators_bar.hpp`, the include +guard should be `CATCH_GENERATORS_BAR_HPP_INCLUDED`, and so on. ## CoC