aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/tutorial
diff options
context:
space:
mode:
authorGravatar Eric Paniagua <eric.paniagua@gmail.com>2016-04-18 08:51:49 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-04-18 10:43:44 +0000
commit8f8e67ea935fdcf8b4fd3ffb703e55278ccd71af (patch)
tree197d40219ddc11713f13f8de6fae831cc19ae261 /site/docs/tutorial
parentc9bb9f0514663cace43310c35749f0a5fece92bc (diff)
Fix mismatch between docs and backend/BUILD in master in examples/tutorial.
The tutorial is broken when using the original BUILD source copied from the docs, and this change fixes it. -- Reviewed-on: https://github.com/bazelbuild/bazel/pull/1137 MOS_MIGRATED_REVID=120102063
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 dc99522fc5..689cc89d8b 100644
--- a/site/docs/tutorial/backend-server.md
+++ b/site/docs/tutorial/backend-server.md
@@ -109,7 +109,7 @@ java_binary(
srcs = glob(["src/main/java/**/*.java"]),
main_class = "does.not.exist",
deps = [
- "//external:javax/servlet/api",
+ "@io_bazel_rules_appengine//appengine:javax.servlet.api",
],
)
```