diff options
author | Herbert Thielen <thielen@hs-worms.de> | 2017-08-29 19:19:45 (GMT) |
---|---|---|
committer | Herbert Thielen <thielen@hs-worms.de> | 2017-08-29 19:19:45 (GMT) |
commit | 29c07aa9dbeb622a6f8f0d1d07c9f139e18b5dca (patch) | |
tree | e529e9cd673bd58edb6875fc69f2c2aff83eb95d /googlemock | |
parent | 96f3745e73d5541419617006e9571b572a098f91 (diff) | |
download | googletest-29c07aa9dbeb622a6f8f0d1d07c9f139e18b5dca.zip googletest-29c07aa9dbeb622a6f8f0d1d07c9f139e18b5dca.tar.gz googletest-29c07aa9dbeb622a6f8f0d1d07c9f139e18b5dca.tar.bz2 |
remove Yob's comma mentioned in issue #1105
Diffstat (limited to 'googlemock')
-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 6ea7f3a..fa2d2fd 100644 --- a/googlemock/docs/CookBook.md +++ b/googlemock/docs/CookBook.md @@ -148,7 +148,7 @@ Note that the mock class doesn't define `AppendPacket()`, unlike the real class. That's fine as long as the test doesn't need to call it. Next, you need a way to say that you want to use -`ConcretePacketStream` in production code, and use `MockPacketStream` +`ConcretePacketStream` in production code and to use `MockPacketStream` in tests. Since the functions are not virtual and the two classes are unrelated, you must specify your choice at _compile time_ (as opposed to run time). |