aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
diff options
context:
space:
mode:
authorGravatar steple <pleines.stephan@gmail.com>2018-08-10 07:03:27 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-08-10 07:07:13 -0700
commita6b2a1b1a9ef930d5f9fa788b04b20f6a1c4e7d1 (patch)
treea08427af8e65ce4edcf3eb1922b24b67d5866722 /site
parentccbd3e67440147b6e52144030fddfa83d1f1b16b (diff)
add missing comma in cc_library example
Closes #5758. PiperOrigin-RevId: 208203915
Diffstat (limited to 'site')
-rw-r--r--site/docs/cpp-use-cases.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/docs/cpp-use-cases.md b/site/docs/cpp-use-cases.md
index 04d6920785..48449029fd 100644
--- a/site/docs/cpp-use-cases.md
+++ b/site/docs/cpp-use-cases.md
@@ -29,7 +29,7 @@ For example:
```python
cc_library(
name = "build-all-the-files",
- srcs = glob(["*.cc"])
+ srcs = glob(["*.cc"]),
hdrs = glob(["*.h"]),
)
```