summaryrefslogtreecommitdiffstats
path: root/docs/primer.md
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2021-06-10 16:52:12 (GMT)
committerDino Radaković <dinor@google.com>2021-06-11 17:42:17 (GMT)
commitb050d6c4b00f3d641f6da6d598199591944f2065 (patch)
tree46257f9522b624a08709c139abd2378b42d5ad1b /docs/primer.md
parent3c4b3a039ec7493721ca1336bf9c64b02a8c5e11 (diff)
downloadgoogletest-b050d6c4b00f3d641f6da6d598199591944f2065.zip
googletest-b050d6c4b00f3d641f6da6d598199591944f2065.tar.gz
googletest-b050d6c4b00f3d641f6da6d598199591944f2065.tar.bz2
Googletest export
Internal change PiperOrigin-RevId: 378672633
Diffstat (limited to 'docs/primer.md')
-rw-r--r--docs/primer.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/primer.md b/docs/primer.md
index dc718b4..6d8fdf4 100644
--- a/docs/primer.md
+++ b/docs/primer.md
@@ -319,7 +319,7 @@ The above uses both `ASSERT_*` and `EXPECT_*` assertions. The rule of thumb is
to use `EXPECT_*` when you want the test to continue to reveal more errors after
the assertion failure, and use `ASSERT_*` when continuing after failure doesn't
make sense. For example, the second assertion in the `Dequeue` test is
-`ASSERT_NE(nullptr, n)`, as we need to dereference the pointer `n` later, which
+`ASSERT_NE(n, nullptr)`, as we need to dereference the pointer `n` later, which
would lead to a segfault when `n` is `NULL`.
When these tests run, the following happens: