diff options
author | mehagar <michaelehagar@gmail.com> | 2015-12-29 13:29:56 (GMT) |
---|---|---|
committer | mehagar <michaelehagar@gmail.com> | 2015-12-29 13:29:56 (GMT) |
commit | ff7263226a130e2349bf406626a87e651a9b2b08 (patch) | |
tree | 77af9f9fd190dc6f97e69001d98f9d95e35b6348 /googletest | |
parent | 13206d6f53aaff844f2d3595a01ac83a29e383db (diff) | |
download | googletest-ff7263226a130e2349bf406626a87e651a9b2b08.zip googletest-ff7263226a130e2349bf406626a87e651a9b2b08.tar.gz googletest-ff7263226a130e2349bf406626a87e651a9b2b08.tar.bz2 |
Fix typo in AdvancedGuide.mdrefs/pull/671/head
Diffstat (limited to 'googletest')
-rw-r--r-- | googletest/docs/AdvancedGuide.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/docs/AdvancedGuide.md b/googletest/docs/AdvancedGuide.md index 5ad10e1..6518d4a 100644 --- a/googletest/docs/AdvancedGuide.md +++ b/googletest/docs/AdvancedGuide.md @@ -32,7 +32,7 @@ output in the future. `FAIL()` generates a fatal failure, while `ADD_FAILURE()` and `ADD_FAILURE_AT()` generate a nonfatal failure. These are useful when control flow, rather than a Boolean expression, -deteremines the test's success or failure. For example, you might want to write +determines the test's success or failure. For example, you might want to write something like: ``` |