aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
diff options
context:
space:
mode:
authorGravatar Emmanuel Jay <emmanuel.jay.42@gmail.com>2016-01-14 09:19:58 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-01-14 09:55:36 +0000
commit3c222dc9293d78dcf731518a02029c42d971ed36 (patch)
tree2b424a615e514e464dc1a0f49b2e083239fb7484 /site
parent7cb66de14a94fe18a69a25327ab4f758f2a55a54 (diff)
Fix include for the cpp example on the website
Diffstat (limited to 'site')
-rw-r--r--site/docs/cpp.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/docs/cpp.md b/site/docs/cpp.md
index f204b663d1..7a194e0b48 100644
--- a/site/docs/cpp.md
+++ b/site/docs/cpp.md
@@ -251,7 +251,7 @@ Then create a BUILD file for your tests:
cc_test(
name = "my_test",
srcs = ["my_test.cc"],
- copts = ["-Iexternal/gtest"],
+ copts = ["-Iexternal/gtest/include"],
deps = ["@gtest//:main"],
)
```