aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/tutorial
diff options
context:
space:
mode:
authorGravatar dzc <dzc@google.com>2017-06-14 22:52:27 +0200
committerGravatar Yun Peng <pcloudy@google.com>2017-06-16 09:26:43 +0200
commit51dcd2830647817ef956563a45c33966bd65b096 (patch)
treefa63960378101423c1dfea74ac81d8e84eca3659 /site/docs/tutorial
parent6628e4321feecc426101da0eb5dcdf3562c5ae1b (diff)
Fix couple of code blocks, doc paths in docgen templates.
* Replace ```shell with ```sh to fix jekyll build errors * Fix paths in docgen templates for new docs site directory structure. * Add jekyll build output directories to gitignore. RELNOTES: None PiperOrigin-RevId: 159020213
Diffstat (limited to 'site/docs/tutorial')
-rw-r--r--site/docs/tutorial/cpp.md2
-rw-r--r--site/docs/tutorial/java.md4
2 files changed, 3 insertions, 3 deletions
diff --git a/site/docs/tutorial/cpp.md b/site/docs/tutorial/cpp.md
index dbf90f5487..e0a5e70b56 100644
--- a/site/docs/tutorial/cpp.md
+++ b/site/docs/tutorial/cpp.md
@@ -152,7 +152,7 @@ through its contents to get an idea for Bazel's output structure.
Now test your freshly built binary:
-```shell
+```sh
bazel-bin/main/hello-world
```
diff --git a/site/docs/tutorial/java.md b/site/docs/tutorial/java.md
index 4a80d472a0..34cb7b5d4c 100644
--- a/site/docs/tutorial/java.md
+++ b/site/docs/tutorial/java.md
@@ -29,7 +29,7 @@ To prepare for the tutorial, first [Install Bazel](/docs/install.md) if
you don't have it installed already. Then, retrieve the sample project from
Bazel's GitHub repository:
-```
+```sh
git clone https://github.com/bazelbuild/examples/
```
@@ -134,7 +134,7 @@ through its contents to get an idea for Bazel's output structure.
Now test your freshly built binary:
-```shell
+```sh
bazel-bin/ProjectRunner
```