aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar brandjon <brandjon@google.com>2018-03-19 10:24:56 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-03-19 10:26:49 -0700
commit6d4386064edbd09b39b5bf5664c0f976713c0fec (patch)
tree08348dcdb308915135c6a378a5651ebe2c30fbdc
parenta5bda13d9a727a7560e9b74f3b45d28709c436e1 (diff)
Rename a few pages
Prefer "Extension" over "Skylark" when referring specifically to Bazel's use of Skylark. Follow-up to https://github.com/bazelbuild/bazel/commit/3ef60b7cdcf8826102ec42a77183645ab0cafcf7. RELNOTES: None PiperOrigin-RevId: 189602396
-rw-r--r--site/_layouts/documentation.html2
-rw-r--r--site/docs/skylark/concepts.md6
-rw-r--r--site/docs/skylark/cookbook.md4
-rw-r--r--site/docs/skylark/faq.md4
4 files changed, 8 insertions, 8 deletions
diff --git a/site/_layouts/documentation.html b/site/_layouts/documentation.html
index 63997743a8..ca4171b42d 100644
--- a/site/_layouts/documentation.html
+++ b/site/_layouts/documentation.html
@@ -184,7 +184,7 @@ nav: docs
<h3>Extending Bazel</h3>
<ul class="sidebar-nav">
- <li><a href="/versions/{{ site.version }}/skylark/concepts.html">Skylark Overview</a></li>
+ <li><a href="/versions/{{ site.version }}/skylark/concepts.html">Extension Overview</a></li>
<li>
<a class="sidebar-nav-heading" data-toggle="collapse"
diff --git a/site/docs/skylark/concepts.md b/site/docs/skylark/concepts.md
index 2ff2378352..238cb355fc 100644
--- a/site/docs/skylark/concepts.md
+++ b/site/docs/skylark/concepts.md
@@ -1,15 +1,15 @@
---
layout: documentation
-title: Skylark Overview
+title: Extension Overview
---
-# Skylark Overview
+# Extension Overview
<!-- [TOC] -->
## Loading an extension
-Skylark extensions are files ending in `.bzl`. Use the `load` statement to
+Bazel extensions are files ending in `.bzl`. Use the `load` statement to
import a symbol from an extension.
```python
diff --git a/site/docs/skylark/cookbook.md b/site/docs/skylark/cookbook.md
index c5231b8c6b..2852f55499 100644
--- a/site/docs/skylark/cookbook.md
+++ b/site/docs/skylark/cookbook.md
@@ -1,9 +1,9 @@
---
layout: documentation
-title: Skylark Examples
+title: Extension Examples
---
-# Skylark Examples
+# Extension Examples
**Tip:** For further examples, see the [GitHub repository](https://github.com/bazelbuild/examples/tree/master/rules).
diff --git a/site/docs/skylark/faq.md b/site/docs/skylark/faq.md
index a39e604350..8c8db05376 100644
--- a/site/docs/skylark/faq.md
+++ b/site/docs/skylark/faq.md
@@ -1,11 +1,11 @@
---
layout: documentation
-title: Skylark FAQ
+title: Extension FAQ
---
# Frequently Asked Questions
-These are some common issues and questions with writing using Skylark.
+These are some common issues and questions with writing extensions.
<!-- [TOC] -->