diff options
author | Krystian Kuzniarek <krystian.kuzniarek@gmail.com> | 2019-07-26 12:46:27 (GMT) |
---|---|---|
committer | Krystian Kuzniarek <krystian.kuzniarek@gmail.com> | 2019-07-30 09:16:21 (GMT) |
commit | d384b8831ffce3c5c15c7154e40e60b9300357fb (patch) | |
tree | 95ef0c1189c18088848d722bcc47edd765be9e56 /googlemock/docs | |
parent | 2134e3fd857d952e03ce76064fad5ac6e9036104 (diff) | |
download | googletest-d384b8831ffce3c5c15c7154e40e60b9300357fb.zip googletest-d384b8831ffce3c5c15c7154e40e60b9300357fb.tar.gz googletest-d384b8831ffce3c5c15c7154e40e60b9300357fb.tar.bz2 |
fix numbering of ordered lists in Markdown
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 e839fa9..633fda0 100644 --- a/googlemock/docs/cheat_sheet.md +++ b/googlemock/docs/cheat_sheet.md @@ -581,10 +581,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. ## Matchers as Test Assertions |