aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/tutorial
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2016-02-15 10:51:44 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-02-15 13:43:43 +0000
commit07aecfb6f4a85b2ce8b19d4b6bf52a29202a7d04 (patch)
treebfbe4e31adf00e1da050d6c9d0578012a1c118c5 /site/docs/tutorial
parentf81c675928c6beeaae5f66480dc7dbef47f75fb8 (diff)
Tutorial: change load statement to use the new syntax.
This the tutorial part of change for https://github.com/bazelbuild/examples/issues/10. -- MOS_MIGRATED_REVID=114677244
Diffstat (limited to 'site/docs/tutorial')
-rw-r--r--site/docs/tutorial/backend-server.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/docs/tutorial/backend-server.md b/site/docs/tutorial/backend-server.md
index 131ea556e1..d49f6b941c 100644
--- a/site/docs/tutorial/backend-server.md
+++ b/site/docs/tutorial/backend-server.md
@@ -237,7 +237,7 @@ for the `main_class` attribute.
Add the following to your `BUILD` file:
```python
-load("/tools/build_rules/appengine/appengine", "appengine_war")
+load("@bazel_tools//tools/build_rules/appengine:appengine.bzl", "appengine_war")
appengine_war(
name = "backend",