aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/docs/CheatSheet.md
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2019-06-19 16:48:38 -0400
committerGennadiy Civil <misterg@google.com>2019-06-19 16:48:38 -0400
commit5ed950c9e39cff044e84ca27d1b6919fa8dd7148 (patch)
tree7e1e1dc73c35e6074906560d954cda807bb19dc7 /googlemock/docs/CheatSheet.md
parentac31db8facf718ea98d28e63986642eb14a018d9 (diff)
downloadgoogletest-5ed950c9e39cff044e84ca27d1b6919fa8dd7148.tar.gz
googletest-5ed950c9e39cff044e84ca27d1b6919fa8dd7148.tar.bz2
googletest-5ed950c9e39cff044e84ca27d1b6919fa8dd7148.zip
Renaming doc files to make the file names more palatable and in preparation for including documentation in sync process
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 bc2af11f..d09d910c 100644
--- a/googlemock/docs/CheatSheet.md
+++ b/googlemock/docs/CheatSheet.md
@@ -338,7 +338,7 @@ You can make a matcher from one or more other matchers:
| Matcher | Description |
|:--------|:------------|
|`MatcherCast<T>(m)`|casts matcher `m` to type `Matcher<T>`.|
-|`SafeMatcherCast<T>(m)`| [safely casts](CookBook.md#casting-matchers) matcher `m` to type `Matcher<T>`.|
+|`SafeMatcherCast<T>(m)`| [safely casts](cook_book.md#casting-matchers) matcher `m` to type `Matcher<T>`.|
|`Truly(predicate)`|`predicate(argument)` returns something considered by C++ to be true, where `predicate` is a function or functor.|
## Matchers as Predicates ##
@@ -579,7 +579,7 @@ class MockFunction<R(A1, ..., An)> {
MOCK_METHODn(Call, R(A1, ..., An));
};
```
-See this [recipe](CookBook.md#using-check-points) for one application of it.
+See this [recipe](cook_book.md#using-check-points) for one application of it.
# Flags #