Skip to content

Commit 66d7401

Browse files
Abseil Teamcopybara-github
Abseil Team
authored andcommitted
Fix extended regular expressions reference URL in advanced.md
The original URL started with https://www.opengroup.org and fails to redirect to the reference page. According to Chrome's dev tools (Network tab), the response to that request is a HTTP 302 Found, with the new location being "balancer://pubs/onlinepubs/009695399/basedefs/xbd_chap09.html". Chrome does not know what to do with that and displays a blank page. Changing the `www` subdomain to `pubs` results in HTTP 200. PiperOrigin-RevId: 721804738 Change-Id: I816d08d5baf957c63ac97506d04c7cc49c3a5ce7
1 parent b4aae50 commit 66d7401

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/advanced.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ TEST_F(FooDeathTest, DoesThat) {
514514
When built with Bazel and using Abseil, GoogleTest uses the
515515
[RE2](https://github.com/google/re2/wiki/Syntax) syntax. Otherwise, for POSIX
516516
systems (Linux, Cygwin, Mac), GoogleTest uses the
517-
[POSIX extended regular expression](https://www.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap09.html#tag_09_04)
517+
[POSIX extended regular expression](https://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap09.html#tag_09_04)
518518
syntax. To learn about POSIX syntax, you may want to read this
519519
[Wikipedia entry](https://en.wikipedia.org/wiki/Regular_expression#POSIX_extended).
520520

0 commit comments

Comments
 (0)