aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2016-01-13 12:57:58 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-01-13 13:19:30 +0000
commit6dccbb0412db44cdde5d73d896167b2d4057a9f7 (patch)
tree0028d469f0a6afa48e2c8b5066ec8ffd939c126f /site
parent485eb969bbfbfbeb7d9501fa2b8f4e6ac5aa7da7 (diff)
Adding some links to skylark concepts g3doc
-- MOS_MIGRATED_REVID=112039216
Diffstat (limited to 'site')
-rw-r--r--site/docs/skylark/concepts.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/site/docs/skylark/concepts.md b/site/docs/skylark/concepts.md
index ae7c1a7a0d..e8a6ab2b0c 100644
--- a/site/docs/skylark/concepts.md
+++ b/site/docs/skylark/concepts.md
@@ -2,7 +2,7 @@
## Loading a Skylark extension
-Use the `load` statement to import a symbol from a <code>.bzl</code> Skylark
+Use the `load` statement to import a symbol from a `.bzl` Skylark
extension.
```python
@@ -129,11 +129,12 @@ Some differences with Python should be noted:
The following Python features are not supported:
-* `class` (see `struct` function)
-* `import` (see `load` statement)
+* `class` (see [`struct`](lib/globals.html#struct) function)
+* `import` (see [`load`](#loading-a-skylark-extension) statement)
* `while`, `yield`
* `lambda`
-* `try`, `raise`, `except`, `finally` (see `fail` for fatal errors).
+* `try`, `raise`, `except`, `finally` (see [`fail`](lib/globals.html#fail)
+ for fatal errors).
* most builtin functions, most methods