aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2019-02-25 12:43:55 -0500
committerGitHub <noreply@github.com>2019-02-25 12:43:55 -0500
commit5154386c5f762af659a073f4b074ed538836a163 (patch)
treeb3dc2a6e884eb98417a429a97ad369d200a15352
parent37ae1fc5e6be26f367d76c078beabd7024fed53a (diff)
parentd70cd4e3585999ee4a41c2028c9837071ba07ab3 (diff)
downloadgoogletest-5154386c5f762af659a073f4b074ed538836a163.tar.gz
Merge pull request #2152 from rsinnet/patch-1
Fix grammatical error in primer.md
-rw-r--r--googletest/docs/primer.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/docs/primer.md b/googletest/docs/primer.md
index 6344ba33..fb96cdf9 100644
--- a/googletest/docs/primer.md
+++ b/googletest/docs/primer.md
@@ -190,7 +190,7 @@ evaluation order.
tests if they are in the same memory location, not if they have the same value.
Therefore, if you want to compare C strings (e.g. `const char*`) by value, use
`ASSERT_STREQ()`, which will be described later on. In particular, to assert
-that a C string is `NULL`, use `ASSERT_STREQ(c_string, NULL)`. Consider use
+that a C string is `NULL`, use `ASSERT_STREQ(c_string, NULL)`. Consider using
`ASSERT_EQ(c_string, nullptr)` if c++11 is supported. To compare two `string`
objects, you should use `ASSERT_EQ`.