aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/cpp.md
diff options
context:
space:
mode:
Diffstat (limited to 'site/docs/cpp.md')
-rw-r--r--site/docs/cpp.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/site/docs/cpp.md b/site/docs/cpp.md
index 4ce0374e11..8f8900dcda 100644
--- a/site/docs/cpp.md
+++ b/site/docs/cpp.md
@@ -112,8 +112,8 @@ cc_library(
)
```
-This expresses that the "sandwich" library depends on the "bread" library,
-which depends on the "flour" library.
+This expresses that the `sandwich` library depends on the `bread` library,
+which depends on the `flour` library.
Adding include paths
--------------------
@@ -177,7 +177,7 @@ more complicated:
link errors for duplicate symbols.
* It uses header files that relative to the `gtest-1.7.0/include/` directory
(`"gtest/gtest.h"`), so we must add that directory the includes.
-* It uses "private" header files in src/, so we add "." to the includes so it
+* It uses "private" header files in `src/`, so we add `.` to the includes so it
can `#include "src/gtest-internal-inl.h"`.
* It needs to link in pthread, so we add that as a `linkopt`.