summaryrefslogtreecommitdiffstats
path: root/googletest/docs/AdvancedGuide.md
diff options
context:
space:
mode:
authorPaul Wilkinson <paul.wilkinson@cantab.net>2016-02-21 15:52:09 (GMT)
committerPaul Wilkinson <paul.wilkinson@cantab.net>2016-02-21 15:52:09 (GMT)
commit83d3b47acf8ab7ca010cacd9bc9f06bcabe69c38 (patch)
tree7cd07122db9c110006ffb17db02041ff84d5b699 /googletest/docs/AdvancedGuide.md
parent77d6b173380332b1c1bc540532641f410ec82d65 (diff)
downloadgoogletest-83d3b47acf8ab7ca010cacd9bc9f06bcabe69c38.zip
googletest-83d3b47acf8ab7ca010cacd9bc9f06bcabe69c38.tar.gz
googletest-83d3b47acf8ab7ca010cacd9bc9f06bcabe69c38.tar.bz2
Fix formatting in AdvancedGuide.mdrefs/pull/719/head
Put occurrences of "#include" in a code span so they are not interpreted as headers. Other documents were not broken because the #include was not at the start of the line, but put them in code spans anyway just in case the text gets refilled in the future.
Diffstat (limited to 'googletest/docs/AdvancedGuide.md')
-rw-r--r--googletest/docs/AdvancedGuide.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/googletest/docs/AdvancedGuide.md b/googletest/docs/AdvancedGuide.md
index 4c4ecb5..7ba8d12 100644
--- a/googletest/docs/AdvancedGuide.md
+++ b/googletest/docs/AdvancedGuide.md
@@ -1450,7 +1450,7 @@ two cases to consider:
Both static functions and definitions/declarations in an unnamed namespace are
only visible within the same translation unit. To test them, you can `#include`
-the entire `.cc` file being tested in your `*_test.cc` file. (#including `.cc`
+the entire `.cc` file being tested in your `*_test.cc` file. (`#include`ing `.cc`
files is not a good way to reuse code - you should not do this in production
code!)
@@ -1551,8 +1551,8 @@ exception, you could catch the exception and assert on it. But Google
Test doesn't use exceptions, so how do we test that a piece of code
generates an expected failure?
-`"gtest/gtest-spi.h"` contains some constructs to do this. After
-#including this header, you can use
+`"gtest/gtest-spi.h"` contains some constructs to do this. After
+`#include`ing this header, you can use
| `EXPECT_FATAL_FAILURE(`_statement, substring_`);` |
|:--------------------------------------------------|