summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2018-10-23 14:51:30 (GMT)
committerGitHub <noreply@github.com>2018-10-23 14:51:30 (GMT)
commit90c957c4086ec8b5738d9bb4be505e518b996e5a (patch)
tree49ff5f1bd8b83a8a27a9ef1e10f699ac1c152115
parent82987067d8cc6ee034abd18a78bd444cb41fd2c5 (diff)
parent58a8da64cecda05390c880d604e782ed4073ffd9 (diff)
downloadgoogletest-90c957c4086ec8b5738d9bb4be505e518b996e5a.zip
googletest-90c957c4086ec8b5738d9bb4be505e518b996e5a.tar.gz
googletest-90c957c4086ec8b5738d9bb4be505e518b996e5a.tar.bz2
Merge pull request #1927 from svg153/patch-1
ACTION table format
-rw-r--r--googlemock/docs/DesignDoc.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/googlemock/docs/DesignDoc.md b/googlemock/docs/DesignDoc.md
index 4cddc9d..d13ff5b 100644
--- a/googlemock/docs/DesignDoc.md
+++ b/googlemock/docs/DesignDoc.md
@@ -198,6 +198,7 @@ Google Test (the name is chosen to match `static_assert` in C++0x).
If you are writing a function that returns an `ACTION` object, you'll
need to know its type. The type depends on the macro used to define
the action and the parameter types. The rule is relatively simple:
+
| **Given Definition** | **Expression** | **Has Type** |
|:-------------------------|:-----------------------------|:-------------------------|
| `ACTION(Foo)` | `Foo()` | `FooAction` |