diff options
author | sthd <sch@campus.technion.ac.il> | 2023-08-11 08:26:59 (GMT) |
---|---|---|
committer | sthd <sch@campus.technion.ac.il> | 2023-08-11 08:26:59 (GMT) |
commit | 8ca57f194af05c0f5211e8d5d350c871b0551612 (patch) | |
tree | 3cdc015d6eb649d9d742f7cc9d2a1aed018c1cef /docs | |
parent | 5b5ef299500701c9d0df782c7432219f8d97f8cc (diff) | |
download | googletest-8ca57f194af05c0f5211e8d5d350c871b0551612.zip googletest-8ca57f194af05c0f5211e8d5d350c871b0551612.tar.gz googletest-8ca57f194af05c0f5211e8d5d350c871b0551612.tar.bz2 |
Changed 2 public links from http to https
Diffstat (limited to 'docs')
-rw-r--r-- | docs/advanced.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/advanced.md b/docs/advanced.md index 344d541..2a7c482 100644 --- a/docs/advanced.md +++ b/docs/advanced.md @@ -508,9 +508,9 @@ TEST_F(FooDeathTest, DoesThat) { When built with Bazel and using Abseil, GoogleTest uses the [RE2](https://github.com/google/re2/wiki/Syntax) syntax. Otherwise, for POSIX systems (Linux, Cygwin, Mac), GoogleTest uses the -[POSIX extended regular expression](http://www.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap09.html#tag_09_04) +[POSIX extended regular expression](https://www.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap09.html#tag_09_04) syntax. To learn about POSIX syntax, you may want to read this -[Wikipedia entry](http://en.wikipedia.org/wiki/Regular_expression#POSIX_extended). +[Wikipedia entry](https://en.wikipedia.org/wiki/Regular_expression#POSIX_extended). On Windows, GoogleTest uses its own simple regular expression implementation. It lacks many features. For example, we don't support union (`"x|y"`), grouping |