summaryrefslogtreecommitdiffstats
path: root/googletest/docs
diff options
context:
space:
mode:
authorHerbert Thielen <thielen@hs-worms.de>2017-10-29 16:12:00 (GMT)
committerHerbert Thielen <thielen@hs-worms.de>2017-10-29 16:12:00 (GMT)
commit8866af0386d73cddec01918f9448dd8bfebe4452 (patch)
tree1204ac502f7591716616993c4c2a89d709630235 /googletest/docs
parent3121b2049e30d2579c03f841caf4049a2c45cdcd (diff)
downloadgoogletest-8866af0386d73cddec01918f9448dd8bfebe4452.zip
googletest-8866af0386d73cddec01918f9448dd8bfebe4452.tar.gz
googletest-8866af0386d73cddec01918f9448dd8bfebe4452.tar.bz2
remove markdown stars (bold) from code examplesrefs/pull/1313/head
Diffstat (limited to 'googletest/docs')
-rw-r--r--googletest/docs/FAQ.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/googletest/docs/FAQ.md b/googletest/docs/FAQ.md
index c39b625..1a216a1 100644
--- a/googletest/docs/FAQ.md
+++ b/googletest/docs/FAQ.md
@@ -494,7 +494,7 @@ EXPECT_PRED1(IsPositive, 5);
However, this will work:
``` cpp
-EXPECT_PRED1(*static_cast<bool (*)(int)>*(IsPositive), 5);
+EXPECT_PRED1(static_cast<bool (*)(int)>(IsPositive), 5);
```
(The stuff inside the angled brackets for the `static_cast` operator is the
@@ -512,14 +512,14 @@ bool IsNegative(T x) {
you can use it in a predicate assertion like this:
``` cpp
-ASSERT_PRED1(IsNegative*<int>*, -5);
+ASSERT_PRED1(IsNegative<int>, -5);
```
Things are more interesting if your template has more than one parameters. The
following won't compile:
``` cpp
-ASSERT_PRED2(*GreaterThan<int, int>*, 5, 0);
+ASSERT_PRED2(GreaterThan<int, int>, 5, 0);
```
@@ -528,7 +528,7 @@ which is one more than expected. The workaround is to wrap the predicate
function in parentheses:
``` cpp
-ASSERT_PRED2(*(GreaterThan<int, int>)*, 5, 0);
+ASSERT_PRED2((GreaterThan<int, int>), 5, 0);
```