aboutsummaryrefslogtreecommitdiffstats
path: root/googlemock/docs
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2019-07-30 18:47:36 -0400
committerGennadiy Civil <misterg@google.com>2019-07-30 18:47:37 -0400
commit4cd6e4d3593d8008b1bff9b6e59867e61b7a6adc (patch)
tree5cb3606789da8cbc32d6374746c5d68615c7049d /googlemock/docs
parentc205468b65a5b6f3239c4e68af860f6c82895f9d (diff)
parentd384b8831ffce3c5c15c7154e40e60b9300357fb (diff)
downloadgoogletest-4cd6e4d3593d8008b1bff9b6e59867e61b7a6adc.tar.gz
googletest-4cd6e4d3593d8008b1bff9b6e59867e61b7a6adc.tar.bz2
googletest-4cd6e4d3593d8008b1bff9b6e59867e61b7a6adc.zip
Merge pull request #2355 from kuzkry:markdown-numbering
PiperOrigin-RevId: 260782065
Diffstat (limited to 'googlemock/docs')
-rw-r--r--googlemock/docs/cheat_sheet.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/googlemock/docs/cheat_sheet.md b/googlemock/docs/cheat_sheet.md
index 6441a7a8..6170965f 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}