diff options
author | Arkady Shapkin <arkady.shapkin@gmail.com> | 2018-09-04 23:07:18 +0300 |
---|---|---|
committer | Arkady Shapkin <arkady.shapkin@gmail.com> | 2018-09-04 23:07:18 +0300 |
commit | e6c407d605c9887dcffc395f93aa33f8685ff035 (patch) | |
tree | 95933e9bf5e6919bdcf806bf920d47467e895d45 /googlemock/docs/CheatSheet.md | |
parent | a2b149b2398b4954e40df947c54297f266a8a194 (diff) | |
download | googletest-e6c407d605c9887dcffc395f93aa33f8685ff035.tar.gz googletest-e6c407d605c9887dcffc395f93aa33f8685ff035.tar.bz2 googletest-e6c407d605c9887dcffc395f93aa33f8685ff035.zip |
Fix doc links
Diffstat (limited to 'googlemock/docs/CheatSheet.md')
-rw-r--r-- | googlemock/docs/CheatSheet.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/docs/CheatSheet.md b/googlemock/docs/CheatSheet.md index adfc6916..d5757b23 100644 --- a/googlemock/docs/CheatSheet.md +++ b/googlemock/docs/CheatSheet.md @@ -264,7 +264,7 @@ Notes: * These matchers can also match: 1. a native array passed by reference (e.g. in `Foo(const int (&a)[5])`), and - 1. an array passed as a pointer and a count (e.g. in `Bar(const T* buffer, int len)` -- see [Multi-argument Matchers](#Multiargument_Matchers.md)). + 1. an array passed as a pointer and a count (e.g. in `Bar(const T* buffer, int len)` -- see [Multi-argument Matchers](#multiargument-matchers)). * The array being matched may be multi-dimensional (i.e. its elements can be arrays). * `m` in `Pointwise(m, ...)` should be a matcher for `::testing::tuple<T, U>` where `T` and `U` are the element type of the actual container and the expected container, respectively. For example, to compare two `Foo` containers where `Foo` doesn't support `operator==` but has an `Equals()` method, one might write: |