aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2018-07-18 11:48:48 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-07-18 11:50:29 -0700
commit34fd09d89918e33d6cde522f8d4e4fc075004343 (patch)
treeb24d7605be9c99b74beb19909c51e3d478b56c68 /site
parentd5df98d845c5e88fcccc34245de1d48cc470ba95 (diff)
Remove stray backticks to fix end of code block in testing documentation.
Also replaced ```` with ``` in other document where it didn't cause a visible change. PiperOrigin-RevId: 205112255
Diffstat (limited to 'site')
-rw-r--r--site/docs/skylark/testing.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/site/docs/skylark/testing.md b/site/docs/skylark/testing.md
index f1a9225e6c..5957e6d059 100644
--- a/site/docs/skylark/testing.md
+++ b/site/docs/skylark/testing.md
@@ -133,7 +133,7 @@ def myrules_test_suite():
# ...
],
)
-````
+```
The test can be run with `bazel test //mypkg:myrules_test`.
@@ -442,7 +442,7 @@ def myhelpers_test_suite():
myhelper_test,
# ...
)
-````
+```
For more examples, see Skylib’s own [tests](https://github.com/bazelbuild/bazel-skylib/blob/master/tests/BUILD).