From c465fbd0ea88482ae57c1454e3bb000ece63c532 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Mon, 5 Jun 2017 18:42:04 +0200 Subject: [PATCH] Slight documentation improvements --- docs/assertions.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/assertions.md b/docs/assertions.md index 5ff7836c..8c8bd198 100644 --- a/docs/assertions.md +++ b/docs/assertions.md @@ -95,7 +95,7 @@ Expects that an exception (of any type) is be thrown during evaluation of the ex * **REQUIRE_THROWS_AS(** _expression_, _exception type_ **)** and * **CHECK_THROWS_AS(** _expression_, _exception type_ **)** -Expects that an exception of the _specified type_ is thrown during evaluation of the expression. Note that the _exception type_ is used verbatim and you should include (const) reference. +Expects that an exception of the _specified type_ is thrown during evaluation of the expression. Note that the _exception type_ is used verbatim and you should include (const) reference (`const&`). * **REQUIRE_THROWS_WITH(** _expression_, _string or string matcher_ **)** and * **CHECK_THROWS_WITH(** _expression_, _string or string matcher_ **)** @@ -127,6 +127,8 @@ REQUIRE_NOTHROW([&](){ }()); ``` + + ## Matcher expressions To support Matchers a slightly different form is used. Matchers have [their own documentation](matchers.md).