aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2017-03-08 15:39:20 +0000
committerGravatar Vladimir Moskva <vladmos@google.com>2017-03-09 10:27:36 +0000
commit1b91de7ad23298a304030131b70b5f8a3d1b9910 (patch)
treef4a9cf0095c5ef5a871f7419e5142e3b1382a3b6
parent4baedc7bf96bd06b36c4af241b7423d21b6ba424 (diff)
Small fixes: title case and rendering of rule names.
-- PiperOrigin-RevId: 149536881 MOS_MIGRATED_REVID=149536881
-rw-r--r--site/versions/master/docs/bazel-overview.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/site/versions/master/docs/bazel-overview.md b/site/versions/master/docs/bazel-overview.md
index d93430b994..ec2e5b0b5e 100644
--- a/site/versions/master/docs/bazel-overview.md
+++ b/site/versions/master/docs/bazel-overview.md
@@ -19,7 +19,7 @@ rules. You can modify rules to tweak the build process, or write new rules to
extend Bazel to work with any language or platform.
Below is the content of one of the BUILD files from a Hello World program. The
-two rules used here are cc_library and cc_binary.
+two rules used here are `cc_library` and `cc_binary`.
```
cc_library(
@@ -38,7 +38,7 @@ cc_binary(
)
```
-## The Dependency Graph Describes the Entire System
+## The dependency graph describes the entire system
Build dependencies are declared explicitly in the BUILD files, allowing Bazel
to create an accurate dependency graph of the entire source code. The graph is
@@ -54,7 +54,7 @@ Bazel’s query language allows you to produce images of the graph like the one
above. You can also use the query language to access information about build
dependencies and their relationships.
-## Build and Tests are Fast, Correct, and Reproducible
+## Build and tests are fast, correct, and reproducible
Hermetic rules and sandboxing allows Bazel to produce correct, reproducible
artifacts and test results. Caching allows reuse of build artifacts and test