aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCopybara-Service <copybara-worker@google.com>2023-08-22 10:24:02 -0700
committerCopybara-Service <copybara-worker@google.com>2023-08-22 10:24:02 -0700
commitcb5cd96bcafc15eaaf73517357b596e9ca1e71b4 (patch)
tree36c460b0b785c0f12e82dae7fbb4f4ed8641a5fd /docs
parentc374da15c57ba6056fedd34c68442f3e2a20c1d7 (diff)
parentc759a58a2d8c1ffae89d02def056b3049b32be80 (diff)
downloadgoogletest-cb5cd96bcafc15eaaf73517357b596e9ca1e71b4.zip
googletest-cb5cd96bcafc15eaaf73517357b596e9ca1e71b4.tar.gz
googletest-cb5cd96bcafc15eaaf73517357b596e9ca1e71b4.tar.bz2
Merge pull request #4343 from sthd:http-to-https
PiperOrigin-RevId: 559151399 Change-Id: I8eb2c7c5222d0fd0935db531a0abe5792633fe7e
Diffstat (limited to 'docs')
-rw-r--r--docs/advanced.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/advanced.md b/docs/advanced.md
index 344d541..0e1f812 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
@@ -2171,7 +2171,7 @@ The report format conforms to the following JSON Schema:
```json
{
- "$schema": "http://json-schema.org/schema#",
+ "$schema": "https://json-schema.org/schema#",
"type": "object",
"definitions": {
"TestCase": {