summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTommy Chiang <ototot@chromium.org>2024-04-29 08:50:21 +0000
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2024-04-30 01:10:19 +0000
commit2f3b6ba52372fecc1d90aa3ca82b9600f723f66d (patch)
treec515cffbf0700d0fad68d2e5c6959eff5d9d93f8
parent2c0edebd937738b91355f5db4b51b642cdb0a4cd (diff)
downloadadhd-2f3b6ba52372fecc1d90aa3ca82b9600f723f66d.tar.gz
Fix typo and run `cros format`
BUG=None TEST=None Change-Id: Ia9b951ec977814ddbecce0145d9dfc1c395eb318 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/adhd/+/5493012 Tested-by: Tommy Chiang <ototot@google.com> Reviewed-by: Li-Yu Yu <aaronyu@google.com> Tested-by: chromeos-cop-builder@chromeos-cop.iam.gserviceaccount.com <chromeos-cop-builder@chromeos-cop.iam.gserviceaccount.com> Auto-Submit: Tommy Chiang <ototot@google.com> Commit-Queue: Li-Yu Yu <aaronyu@google.com>
-rw-r--r--repositories/http_archive_deps/repo.bzl4
1 files changed, 2 insertions, 2 deletions
diff --git a/repositories/http_archive_deps/repo.bzl b/repositories/http_archive_deps/repo.bzl
index cd6c1c7b..edcdc49f 100644
--- a/repositories/http_archive_deps/repo.bzl
+++ b/repositories/http_archive_deps/repo.bzl
@@ -4,7 +4,7 @@
"""A repository rule to list http_archive dependencies and store them in a file.
-This help us maintail the bazel_external_uris in our ebuild:
+This help us maintain the bazel_external_uris in our ebuild:
https://source.chromium.org/chromiumos/chromiumos/codesearch/+/main:src/third_party/chromiumos-overlay/media-sound/adhd/adhd-9999.ebuild
"""
@@ -35,10 +35,10 @@ def _impl(repository_ctx):
_http_archive_deps_repository = repository_rule(
implementation = _impl,
attrs = {
- "deps_json": attr.string(),
"bazel_external_uris_exclude": attr.string_list(
doc = "List of http_archive()s to exclude from bazel_external_uris",
),
+ "deps_json": attr.string(),
},
)