diff options
author | Gennadiy Civil <misterg@google.com> | 2019-07-30 22:47:36 (GMT) |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2019-07-30 22:47:37 (GMT) |
commit | 4cd6e4d3593d8008b1bff9b6e59867e61b7a6adc (patch) | |
tree | 5cb3606789da8cbc32d6374746c5d68615c7049d /googlemock/docs | |
parent | c205468b65a5b6f3239c4e68af860f6c82895f9d (diff) | |
parent | d384b8831ffce3c5c15c7154e40e60b9300357fb (diff) | |
download | googletest-4cd6e4d3593d8008b1bff9b6e59867e61b7a6adc.zip googletest-4cd6e4d3593d8008b1bff9b6e59867e61b7a6adc.tar.gz googletest-4cd6e4d3593d8008b1bff9b6e59867e61b7a6adc.tar.bz2 |
Merge pull request #2355 from kuzkry:markdown-numbering
PiperOrigin-RevId: 260782065
Diffstat (limited to 'googlemock/docs')
-rw-r--r-- | googlemock/docs/cheat_sheet.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/googlemock/docs/cheat_sheet.md b/googlemock/docs/cheat_sheet.md index 6441a7a..6170965 100644 --- a/googlemock/docs/cheat_sheet.md +++ b/googlemock/docs/cheat_sheet.md @@ -599,10 +599,10 @@ which must be a permanent callback. **Notes:** 1. The `MATCHER*` macros cannot be used inside a function or class. -1. The matcher body must be *purely functional* (i.e. it cannot have any side +2. The matcher body must be *purely functional* (i.e. it cannot have any side effect, and the result must not depend on anything other than the value being matched and the matcher parameters). -1. You can use `PrintToString(x)` to convert a value `x` of any type to a +3. You can use `PrintToString(x)` to convert a value `x` of any type to a string. ### Actions {#ActionList} |