aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormehagar <michaelehagar@gmail.com>2015-12-29 07:29:56 -0600
committermehagar <michaelehagar@gmail.com>2015-12-29 07:29:56 -0600
commitff7263226a130e2349bf406626a87e651a9b2b08 (patch)
tree77af9f9fd190dc6f97e69001d98f9d95e35b6348
parent13206d6f53aaff844f2d3595a01ac83a29e383db (diff)
downloadgoogletest-ff7263226a130e2349bf406626a87e651a9b2b08.tar.gz
googletest-ff7263226a130e2349bf406626a87e651a9b2b08.tar.bz2
googletest-ff7263226a130e2349bf406626a87e651a9b2b08.zip
Fix typo in AdvancedGuide.md
-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 5ad10e10..6518d4ae 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:
```