From 3983f67e32fb3e9294487b9d4f9586efa6e5d088 Mon Sep 17 00:00:00 2001 From: Abseil Team Date: Fri, 4 Jul 2025 01:13:35 -0700 Subject: [PATCH] Replace internal link in GoogleTest docs Replace an internal link to AbslStringify's documentation with the equivalent public link. PiperOrigin-RevId: 779085254 Change-Id: I2cbd2b6262a5ced06f166d4fcc7c08796e5a60af --- docs/advanced.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/advanced.md b/docs/advanced.md index 1ed34710c..d703a7b1c 100644 --- a/docs/advanced.md +++ b/docs/advanced.md @@ -349,7 +349,8 @@ void AbslStringify(Sink& sink, EnumWithStringify e) { {: .callout .note} Note: `AbslStringify()` utilizes a generic "sink" buffer to construct its string. For more information about supported operations on `AbslStringify()`'s -sink, see go/abslstringify. +sink, see +[the `AbslStringify()` documentation](https://abseil.io/docs/cpp/guides/abslstringify). `AbslStringify()` can also use `absl::StrFormat`'s catch-all `%v` type specifier within its own format strings to perform type deduction. `Point` above could be @@ -403,7 +404,8 @@ EXPECT_TRUE(IsCorrectPointIntVector(point_ints)) ``` For more details regarding `AbslStringify()` and its integration with other -libraries, see go/abslstringify. +libraries, see +[the documentation](https://abseil.io/docs/cpp/guides/abslstringify). ## Regular Expression Syntax