Trivial typo fix. (#1119)

This commit is contained in:
Dan Nissenbaum 2017-12-09 15:29:39 -05:00 committed by Martin Hořeňovský
parent ed33e9787e
commit 88d2bac624
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ The ```CHECK``` family are equivalent but execution continues in the same test c
* **REQUIRE(** _expression_ **)** and
* **CHECK(** _expression_ **)**
Evaluates the expression and records the result. If an exception is thrown it is caught, reported, and counted as a failure. These are the macros you will use most of the time
Evaluates the expression and records the result. If an exception is thrown, it is caught, reported, and counted as a failure. These are the macros you will use most of the time.
Examples:
```