diff options
author | Herbert Thielen <thielen@hs-worms.de> | 2017-08-29 19:20:46 (GMT) |
---|---|---|
committer | Herbert Thielen <thielen@hs-worms.de> | 2017-08-29 19:20:46 (GMT) |
commit | bb8399e1baf9d984894a54ba1e6e9e4d20c11a35 (patch) | |
tree | e9bab2b9e4b1b5908d7663ddbb8eb339fcfb4379 /googlemock/docs | |
parent | 29c07aa9dbeb622a6f8f0d1d07c9f139e18b5dca (diff) | |
download | googletest-bb8399e1baf9d984894a54ba1e6e9e4d20c11a35.zip googletest-bb8399e1baf9d984894a54ba1e6e9e4d20c11a35.tar.gz googletest-bb8399e1baf9d984894a54ba1e6e9e4d20c11a35.tar.bz2 |
use plural verb as mentioned in issue #1105refs/pull/1233/head
Diffstat (limited to 'googlemock/docs')
-rw-r--r-- | googlemock/docs/CookBook.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/googlemock/docs/CookBook.md b/googlemock/docs/CookBook.md index fa2d2fd..753c6dd 100644 --- a/googlemock/docs/CookBook.md +++ b/googlemock/docs/CookBook.md @@ -706,7 +706,7 @@ type `m` accepts): 1. When both `T` and `U` are built-in arithmetic types (`bool`, integers, and floating-point numbers), the conversion from `T` to `U` is not lossy (in other words, any value representable by `T` can also be represented by `U`); and 1. When `U` is a reference, `T` must also be a reference (as the underlying matcher may be interested in the address of the `U` value). -The code won't compile if any of these conditions isn't met. +The code won't compile if any of these conditions aren't met. Here's one example: |