aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Vorobev <vmax0770@gmail.com>2021-05-12 23:02:36 +0300
committerGitHub <noreply@github.com>2021-05-12 16:02:36 -0400
commit8f6d22452d088b49b13ba2c224af69ccc8ccbc90 (patch)
treec59166418f73392765c59dea1fffa770a1a83a49
parentd93ee5347e2d9c225ad315094507e018364d5a67 (diff)
downloadstardoc-8f6d22452d088b49b13ba2c224af69ccc8ccbc90.tar.gz
Update repository name to match documentation (#102)
-rw-r--r--WORKSPACE2
-rw-r--r--test/testdata/local_repository_test/BUILD4
-rw-r--r--test/testdata/local_repository_test/input.bzl2
3 files changed, 4 insertions, 4 deletions
diff --git a/WORKSPACE b/WORKSPACE
index c183530..d07e3ac 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -1,4 +1,4 @@
-workspace(name = "io_bazel_skydoc")
+workspace(name = "io_bazel_stardoc")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load(":setup.bzl", "stardoc_repositories")
diff --git a/test/testdata/local_repository_test/BUILD b/test/testdata/local_repository_test/BUILD
index f63d52f..0e09021 100644
--- a/test/testdata/local_repository_test/BUILD
+++ b/test/testdata/local_repository_test/BUILD
@@ -1,5 +1,5 @@
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
-load("@io_bazel_skydoc//stardoc:stardoc.bzl", "stardoc")
+load("@io_bazel_stardoc//stardoc:stardoc.bzl", "stardoc")
package(
default_visibility = ["//visibility:public"],
@@ -23,6 +23,6 @@ bzl_library(
name = "lib",
srcs = [
"input.bzl",
- "@io_bazel_skydoc//test:testdata/fakedeps/dep.bzl",
+ "@io_bazel_stardoc//test:testdata/fakedeps/dep.bzl",
],
)
diff --git a/test/testdata/local_repository_test/input.bzl b/test/testdata/local_repository_test/input.bzl
index 3dbb6de..59e5b42 100644
--- a/test/testdata/local_repository_test/input.bzl
+++ b/test/testdata/local_repository_test/input.bzl
@@ -1,6 +1,6 @@
"""A test that verifies documenting functions in an input file under a local_repository."""
-load("@io_bazel_skydoc//test/testdata/fakedeps:dep.bzl", "give_me_five")
+load("@io_bazel_stardoc//test/testdata/fakedeps:dep.bzl", "give_me_five")
def min(integers):
"""Returns the minimum of given elements.