aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/docs/CheatSheet.md
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2018-06-11 12:55:06 -0400
committerGitHub <noreply@github.com>2018-06-11 12:55:06 -0400
commit9077ec7efe5b652468ab051e93c67589d5cb8f85 (patch)
treec1420a17dc6c9f9b0900a47d2b9a566d318faded /googlemock/docs/CheatSheet.md
parentc091b0469ab4c04ee9411ef770f32360945f4c53 (diff)
parent0b958a03e9f757c5f744f09fac2f82b6d896561b (diff)
downloadgoogletest-9077ec7efe5b652468ab051e93c67589d5cb8f85.tar.gz
googletest-9077ec7efe5b652468ab051e93c67589d5cb8f85.tar.bz2
googletest-9077ec7efe5b652468ab051e93c67589d5cb8f85.zip
Merge pull request #1624 from gennadiycivil/master
Adjust documentation files and links.
Diffstat (limited to 'googlemock/docs/CheatSheet.md')
-rw-r--r--googlemock/docs/CheatSheet.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/googlemock/docs/CheatSheet.md b/googlemock/docs/CheatSheet.md
index f8bbbfe6..d54dd16a 100644
--- a/googlemock/docs/CheatSheet.md
+++ b/googlemock/docs/CheatSheet.md
@@ -229,7 +229,7 @@ The `argument` can be either a C string or a C++ string object:
`ContainsRegex()` and `MatchesRegex()` use the regular expression
syntax defined
-[here](../../googletest/docs/AdvancedGuide.md#regular-expression-syntax).
+[here](../../googletest/docs/advanced.md#regular-expression-syntax).
`StrCaseEq()`, `StrCaseNe()`, `StrEq()`, and `StrNe()` work for wide
strings as well.
@@ -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`. |