summaryrefslogtreecommitdiff
path: root/googletest/docs
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2019-11-22 11:28:31 -0500
committerGennadiy Civil <misterg@google.com>2019-11-22 16:33:37 -0500
commit679bfec6db73c021b0226e386c65ec1baee7a09f (patch)
treeb241d86facb87d2be72b0fe752b9e61f713a1637 /googletest/docs
parentaf71b6607f9e63a0c70b59dcafe92a42a57e3a96 (diff)
downloadgoogletest-git-679bfec6db73c021b0226e386c65ec1baee7a09f.tar.gz
Googletest export
Fix typo in the predicate assertion table. PiperOrigin-RevId: 281973457
Diffstat (limited to 'googletest/docs')
-rw-r--r--googletest/docs/advanced.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/googletest/docs/advanced.md b/googletest/docs/advanced.md
index ce8644e4..a9f2dfae 100644
--- a/googletest/docs/advanced.md
+++ b/googletest/docs/advanced.md
@@ -106,7 +106,7 @@ assertion* to get the function arguments printed for free:
| Fatal assertion | Nonfatal assertion | Verifies |
| --------------------------------- | --------------------------------- | --------------------------- |
| `ASSERT_PRED1(pred1, val1)` | `EXPECT_PRED1(pred1, val1)` | `pred1(val1)` is true |
-| `ASSERT_PRED2(pred2, val1, val2)` | `EXPECT_PRED2(pred2, val1, val2)` | `pred1(val1, val2)` is true |
+| `ASSERT_PRED2(pred2, val1, val2)` | `EXPECT_PRED2(pred2, val1, val2)` | `pred2(val1, val2)` is true |
| `...` | `...` | `...` |
<!-- mdformat on-->