aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/cpp.md
diff options
context:
space:
mode:
authorGravatar David Chen <dzc@google.com>2015-07-23 15:04:50 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2015-07-27 08:31:47 +0000
commit3f16b561a68fdb1eaa865501420c9b87b44809ae (patch)
tree93ad617fbc729c6f15185bccfc414461301e3c22 /site/docs/cpp.md
parent9d659ad0a1024544eb6275391b56660a1d981109 (diff)
Minor documentation fixes. Make sidebar navigation look more consistent.
-- MOS_MIGRATED_REVID=98934930
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`.