summaryrefslogtreecommitdiffstats
path: root/googletest/docs/primer.md
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2018-06-11 15:40:35 (GMT)
committerGennadiy Civil <misterg@google.com>2018-06-11 15:40:35 (GMT)
commit8f87d00398228925b1542b81710a9015c8f68e7b (patch)
treea383d30b17b861537037174038fc3e15daa6e055 /googletest/docs/primer.md
parentde47b0d30c1d2a2072eb1c2a2e852d6aaa028931 (diff)
downloadgoogletest-8f87d00398228925b1542b81710a9015c8f68e7b.zip
googletest-8f87d00398228925b1542b81710a9015c8f68e7b.tar.gz
googletest-8f87d00398228925b1542b81710a9015c8f68e7b.tar.bz2
Rename AdvancedGuide.md to advanced.md and adjust the links.
Part of documentation rationalization work
Diffstat (limited to 'googletest/docs/primer.md')
-rw-r--r--googletest/docs/primer.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/googletest/docs/primer.md b/googletest/docs/primer.md
index 5e8ee0c..561ad02 100644
--- a/googletest/docs/primer.md
+++ b/googletest/docs/primer.md
@@ -229,7 +229,7 @@ A `NULL` pointer and an empty string are considered _different_.
_Availability_: Linux, Windows, Mac.
See also: For more string comparison tricks (substring, prefix, suffix, and
-regular expression matching, for example), see the [Advanced Google Test Guide](AdvancedGuide.md).
+regular expression matching, for example), see the [Advanced Google Test Guide](advanced.md).
# Simple Tests #
@@ -494,7 +494,7 @@ int main(int argc, char **argv) {
The `::testing::InitGoogleTest()` function parses the command line for Google
Test flags, and removes all recognized flags. This allows the user to control a
-test program's behavior via various flags, which we'll cover in [AdvancedGuide](AdvancedGuide.md).
+test program's behavior via various flags, which we'll cover in [AdvancedGuide](advanced.md).
You must call this function before calling `RUN_ALL_TESTS()`, or the flags
won't be properly initialized.
@@ -523,7 +523,7 @@ There is one more pitfall, though. If you use Google Test as a static library (t
Congratulations! You've learned the Google Test basics. You can start writing
and running Google Test tests, read some [samples](Samples.md), or continue with
-[AdvancedGuide](AdvancedGuide.md), which describes many more useful Google Test features.
+[AdvancedGuide](advanced.md), which describes many more useful Google Test features.
# Known Limitations #