Fix minor typo in the documentation

This commit is contained in:
Cristian Morales Vega 2018-05-31 23:21:14 +01:00 committed by Martin Hořeňovský
parent 88d7b8da25
commit 7abd7db2c8
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ Because the preprocessor parses code using different rules than the
compiler, multiple-argument assertions (e.g. `REQUIRE_THROWS_AS`) have
problems with commas inside the provided expressions. As an example
`REQUIRE_THROWS_AS(std::pair<int, int>(1, 2), std::invalid_argument);`
will fails to compile, because the preprocessor sees 3 arguments provided,
will fail to compile, because the preprocessor sees 3 arguments provided,
but the macro accepts only 2. There are two possible workarounds.
1) Use typedef: