aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorsthd <sch@campus.technion.ac.il>2023-08-11 11:21:47 +0300
committersthd <sch@campus.technion.ac.il>2023-08-11 11:21:47 +0300
commit5b5ef299500701c9d0df782c7432219f8d97f8cc (patch)
tree3c5180588e7eec11aa186ebebb78510fa97e7c2c /docs
parent622ee5cf2998a6b2c2f24a95069e2748b26c4a2c (diff)
downloadgoogletest-5b5ef299500701c9d0df782c7432219f8d97f8cc.zip
googletest-5b5ef299500701c9d0df782c7432219f8d97f8cc.tar.gz
googletest-5b5ef299500701c9d0df782c7432219f8d97f8cc.tar.bz2
Changed 3 public links from http to https
Diffstat (limited to 'docs')
-rw-r--r--docs/faq.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/faq.md b/docs/faq.md
index 1928097..90c2497 100644
--- a/docs/faq.md
+++ b/docs/faq.md
@@ -607,7 +607,7 @@ defined such that we can print a value of `FooType`.
In addition, if `FooType` is declared in a name space, the `<<` operator also
needs to be defined in the *same* name space. See
-[Tip of the Week #49](http://abseil.io/tips/49) for details.
+[Tip of the Week #49](https://abseil.io/tips/49) for details.
## How do I suppress the memory leak messages on Windows?
@@ -628,10 +628,10 @@ mistake in production. Such cleverness also leads to
advise against the practice, and GoogleTest doesn't provide a way to do it.
In general, the recommended way to cause the code to behave differently under
-test is [Dependency Injection](http://en.wikipedia.org/wiki/Dependency_injection). You can inject
+test is [Dependency Injection](https://en.wikipedia.org/wiki/Dependency_injection). You can inject
different functionality from the test and from the production code. Since your
production code doesn't link in the for-test logic at all (the
-[`testonly`](http://docs.bazel.build/versions/master/be/common-definitions.html#common.testonly) attribute for BUILD targets helps to ensure
+[`testonly`](https://docs.bazel.build/versions/master/be/common-definitions.html#common.testonly) attribute for BUILD targets helps to ensure
that), there is no danger in accidentally running it.
However, if you *really*, *really*, *really* have no choice, and if you follow