Fix typo in documents

This commit is contained in:
hyuk.myeong
2019-10-01 14:24:55 +09:00
parent dc1ca9ae4c
commit 51f7396d40
3 changed files with 7 additions and 9 deletions

View File

@@ -531,8 +531,8 @@ There are several good reasons:
## What can the statement argument in ASSERT_DEATH() be?
`ASSERT_DEATH(*statement*, *regex*)` (or any death assertion macro) can be used
wherever `*statement*` is valid. So basically `*statement*` can be any C++
`ASSERT_DEATH(statement, matcher)` (or any death assertion macro) can be used
wherever *`statement`* is valid. So basically *`statement`* can be any C++
statement that makes sense in the current context. In particular, it can
reference global and/or local variables, and can be: