aboutsummaryrefslogtreecommitdiffstats
path: root/googletest/docs
diff options
context:
space:
mode:
authorRytis Karpuška <rytis.karpuska@gmail.com>2019-07-23 18:51:35 +0300
committerRytis Karpuška <rytis.karpuska@gmail.com>2019-07-23 18:51:35 +0300
commite93b5e06bab9b37fcacc727a1b3c42d09a8c4ad7 (patch)
treea602ee1f24b5ce731d5d02b71e7e694d2858b913 /googletest/docs
parentb77e5c76252bac322bb82c5b444f050bd0d92451 (diff)
downloadgoogletest-e93b5e06bab9b37fcacc727a1b3c42d09a8c4ad7.tar.gz
googletest-e93b5e06bab9b37fcacc727a1b3c42d09a8c4ad7.tar.bz2
googletest-e93b5e06bab9b37fcacc727a1b3c42d09a8c4ad7.zip
Fix small errors in primer.md
Diffstat (limited to 'googletest/docs')
-rw-r--r--googletest/docs/primer.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/docs/primer.md b/googletest/docs/primer.md
index 388df3b5..6bd6e9bf 100644
--- a/googletest/docs/primer.md
+++ b/googletest/docs/primer.md
@@ -193,7 +193,7 @@ objects, you should use `ASSERT_EQ`.
When doing pointer comparisons use `*_EQ(ptr, nullptr)` and `*_NE(ptr, nullptr)`
instead of `*_EQ(ptr, NULL)` and `*_NE(ptr, NULL)`. This is because `nullptr` is
-typed while `NULL` is not. See [FAQ](faq.md)for more details.
+typed while `NULL` is not. See [FAQ](faq.md) for more details.
If you're working with floating point numbers, you may want to use the floating
point variations of some of these macros in order to avoid problems caused by
@@ -456,7 +456,7 @@ When invoked, the `RUN_ALL_TESTS()` macro:
* Deletes the fixture.
-* Restores the state of all all googletest flags
+* Restores the state of all googletest flags
* Repeats the above steps for the next test, until all tests have run.