summaryrefslogtreecommitdiffstats
path: root/docs/primer.md
diff options
context:
space:
mode:
authorAbseil Team <absl-team@google.com>2021-05-26 18:51:45 (GMT)
committerAndy Soffer <asoffer@google.com>2021-06-02 21:54:53 (GMT)
commit2bd34816661a29b7cf8c21bd86210408ed658edb (patch)
tree0a62ce9fedfba22053ec69d45770cf68cd8286c7 /docs/primer.md
parentd5d6ff940b9df43eec11228c77550ac3fbc1712e (diff)
downloadgoogletest-2bd34816661a29b7cf8c21bd86210408ed658edb.zip
googletest-2bd34816661a29b7cf8c21bd86210408ed658edb.tar.gz
googletest-2bd34816661a29b7cf8c21bd86210408ed658edb.tar.bz2
Googletest export
Fix broken link PiperOrigin-RevId: 375995669
Diffstat (limited to 'docs/primer.md')
-rw-r--r--docs/primer.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/docs/primer.md b/docs/primer.md
index 0ba4538..dc718b4 100644
--- a/docs/primer.md
+++ b/docs/primer.md
@@ -119,9 +119,8 @@ this in mind if you get a heap checker error in addition to assertion errors.
To provide a custom failure message, simply stream it into the macro using the
`<<` operator or a sequence of such operators. See the following example, using
-the
-[`ASSERT_EQ` and `EXPECT_EQ`](reference/assertions.md?cl=374325853#EXPECT_EQ)
-macros to verify value equality:
+the [`ASSERT_EQ` and `EXPECT_EQ`](reference/assertions.md#EXPECT_EQ) macros to
+verify value equality:
```c++
ASSERT_EQ(x.size(), y.size()) << "Vectors x and y are of unequal length";