summaryrefslogtreecommitdiffstats
path: root/googlemock/docs
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2018-06-11 15:26:16 (GMT)
committerGennadiy Civil <misterg@google.com>2018-06-11 15:26:16 (GMT)
commitde47b0d30c1d2a2072eb1c2a2e852d6aaa028931 (patch)
treee3b480f265889cb79488e15ea02feb48f8893bf3 /googlemock/docs
parent98a0d007d7092b72eea0e501bb9ad17908a1a036 (diff)
downloadgoogletest-de47b0d30c1d2a2072eb1c2a2e852d6aaa028931.zip
googletest-de47b0d30c1d2a2072eb1c2a2e852d6aaa028931.tar.gz
googletest-de47b0d30c1d2a2072eb1c2a2e852d6aaa028931.tar.bz2
Rename "Primer.md" to "primer.md" and adjust links. Part of the documentaion rationalzation
Diffstat (limited to 'googlemock/docs')
-rw-r--r--googlemock/docs/CheatSheet.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/docs/CheatSheet.md b/googlemock/docs/CheatSheet.md
index f8bbbfe..d078b42 100644
--- a/googlemock/docs/CheatSheet.md
+++ b/googlemock/docs/CheatSheet.md
@@ -349,7 +349,7 @@ You can make a matcher from one or more other matchers:
## Matchers as Test Assertions ##
-|`ASSERT_THAT(expression, m)`|Generates a [fatal failure](../../googletest/docs/Primer.md#assertions) if the value of `expression` doesn't match matcher `m`.|
+|`ASSERT_THAT(expression, m)`|Generates a [fatal failure](../../googletest/docs/primer.md#assertions) if the value of `expression` doesn't match matcher `m`.|
|:---------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------|
|`EXPECT_THAT(expression, m)`|Generates a non-fatal failure if the value of `expression` doesn't match matcher `m`. |