diff options
author | Abseil Team <absl-team@google.com> | 2019-08-07 09:36:14 -0400 |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2019-08-07 11:57:22 -0400 |
commit | f8f5fcab3bc8496d4073171e83e511a5e51aec6b (patch) | |
tree | c948b2ea68054418a66967163f3ec4ef1d2932ac /googlemock/docs/cook_book.md | |
parent | dd5402d9d4f3477471abb89a95a60f09edc0cccd (diff) | |
download | googletest-f8f5fcab3bc8496d4073171e83e511a5e51aec6b.tar.gz googletest-f8f5fcab3bc8496d4073171e83e511a5e51aec6b.tar.bz2 googletest-f8f5fcab3bc8496d4073171e83e511a5e51aec6b.zip |
Googletest export
Fix broken links.
PiperOrigin-RevId: 262123510
Diffstat (limited to 'googlemock/docs/cook_book.md')
-rw-r--r-- | googlemock/docs/cook_book.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/googlemock/docs/cook_book.md b/googlemock/docs/cook_book.md index f2b7d300..923817ee 100644 --- a/googlemock/docs/cook_book.md +++ b/googlemock/docs/cook_book.md @@ -3718,9 +3718,9 @@ A cardinality is used in `Times()` to tell gMock how many times you expect a call to occur. It doesn't have to be exact. For example, you can say `AtLeast(5)` or `Between(2, 4)`. -If the [built-in set](#CardinalityList) of cardinalities doesn't suit you, you -are free to define your own by implementing the following interface (in -namespace `testing`): +If the [built-in set](cheat_sheet.md#CardinalityList) of cardinalities doesn't +suit you, you are free to define your own by implementing the following +interface (in namespace `testing`): ```cpp class CardinalityInterface { |