aboutsummaryrefslogtreecommitdiffstats
path: root/googletest/docs
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2017-08-02 17:07:27 -0400
committerGitHub <noreply@github.com>2017-08-02 17:07:27 -0400
commite1f3d8d17549688fa5487f84ce3236a26d90b5af (patch)
tree30a8e4f43cb23915f806a5e1e42faf75830589a9 /googletest/docs
parent683fcf596947096341727a8cd0942d859a9496c7 (diff)
parentff7263226a130e2349bf406626a87e651a9b2b08 (diff)
downloadgoogletest-e1f3d8d17549688fa5487f84ce3236a26d90b5af.tar.gz
googletest-e1f3d8d17549688fa5487f84ce3236a26d90b5af.tar.bz2
googletest-e1f3d8d17549688fa5487f84ce3236a26d90b5af.zip
Merge pull request #671 from mehagar/patch-1
Fix typo in AdvancedGuide.md
Diffstat (limited to 'googletest/docs')
-rw-r--r--googletest/docs/AdvancedGuide.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/docs/AdvancedGuide.md b/googletest/docs/AdvancedGuide.md
index c365d51c..514bc35e 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:
```