Renaming doc files to make the file names more palatable and in preparation for including documentation in sync process

This commit is contained in:
Gennadiy Civil
2019-06-19 16:48:38 -04:00
parent ac31db8fac
commit 5ed950c9e3
15 changed files with 32 additions and 32 deletions

View File

@@ -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 #