aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDawid Kurek <dawikur@users.noreply.github.com>2017-02-06 13:31:11 +0100
committerGitHub <noreply@github.com>2017-02-06 13:31:11 +0100
commit51d92b2ccb9708c52fee3f2dc81c26f51bf8f19f (patch)
tree84b894c0b923916fa30d65cc90dfa00be017277f
parentd62d6c6556d96dda924382547c54a4b3afedb22c (diff)
downloadgoogletest-51d92b2ccb9708c52fee3f2dc81c26f51bf8f19f.tar.gz
googletest-51d92b2ccb9708c52fee3f2dc81c26f51bf8f19f.tar.bz2
googletest-51d92b2ccb9708c52fee3f2dc81c26f51bf8f19f.zip
Replace html entities with their equivalents
-rw-r--r--googlemock/docs/CookBook.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/googlemock/docs/CookBook.md b/googlemock/docs/CookBook.md
index 0460d357..89a41508 100644
--- a/googlemock/docs/CookBook.md
+++ b/googlemock/docs/CookBook.md
@@ -2365,7 +2365,7 @@ Now there’s one topic we haven’t covered: how do you set expectations on `Sh
// When one calls ShareBuzz() on the MockBuzzer like this, the call is
// forwarded to DoShareBuzz(), which is mocked. Therefore this statement
// will trigger the above EXPECT_CALL.
- mock_buzzer_.ShareBuzz(MakeUnique&lt;Buzz&gt;(AccessLevel::kInternal),
+ mock_buzzer_.ShareBuzz(MakeUnique<Buzz>(AccessLevel::kInternal),
::base::Now());
```
@@ -2404,7 +2404,7 @@ Now, the mock `DoShareBuzz()` method is free to save the buzz argument for later
```
std::unique_ptr<Buzz> intercepted_buzz;
EXPECT_CALL(mock_buzzer_, DoShareBuzz(NotNull(), _))
- .WillOnce(Invoke([&amp;intercepted_buzz](Buzz* buzz, Time timestamp) {
+ .WillOnce(Invoke([&intercepted_buzz](Buzz* buzz, Time timestamp) {
// Save buzz in intercepted_buzz for analysis later.
intercepted_buzz.reset(buzz);
return false;