]> git-server-git.apps.pok.os.sepia.ceph.com Git - googletest.git/commitdiff
Remove google internal links from documentation on github
authorPrashant Jaikumar <pjaikumar@google.com>
Wed, 19 Jun 2019 22:18:55 +0000 (15:18 -0700)
committerPrashant Jaikumar <pjaikumar@google.com>
Wed, 19 Jun 2019 22:18:55 +0000 (15:18 -0700)
googletest/docs/advanced.md
googletest/docs/faq.md

index c8a7eb6fbe7fcee9aebed03ecde3390ddd3f4389..6a013795082d85b20c44b59d1f3b5e1415f0a1cb 100644 (file)
@@ -1398,7 +1398,7 @@ namespace:
 
 For more details, see the comments at the definitions of these functions.
 
-NOTE: The `INSTANTIATE_TEST_SUITE_P` keyword is recommended (addressing http://go/gh/google/googletest/issues/1085)  For 1.8.1 and previous releases the keyword is `INSTANTIATE_TEST_CASE_P`. which has been deprecated in favor of INSTANTIATE_TEST_SUITE_P.
+NOTE: The `INSTANTIATE_TEST_SUITE_P` keyword is recommended (addressing https://github.com/google/googletest/issues/1085)  For 1.8.1 and previous releases the keyword is `INSTANTIATE_TEST_CASE_P`. which has been deprecated in favor of INSTANTIATE_TEST_SUITE_P.
 
 The following statement will instantiate tests from the `FooTest` test suite each
 with parameter values `"meeny"`, `"miny"`, and `"moe"`.
index d6ae53c9440b17b2050bc119a129891e09977f97..2b0bbe7a7811818aae7661e805da65f0d6518ec4 100644 (file)
@@ -682,7 +682,7 @@ there is an `std::ostream& operator<<(std::ostream&, const FooType&)` function
 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 go/totw/49 for details.
+needs to be defined in the *same* name space. See  https://abseil.io/tips/49 for details.
 
 ## How do I suppress the memory leak messages on Windows?