diff --git a/CHANGELOG.md b/CHANGELOG.md index dce01b4..7939d75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,7 +41,7 @@ Release 0.9.0 https://docs.google.com/document/d/1vc8v-kXjvgZOdQdnxPTaV0rrLxtP2XwnD2tAZlYJOqw/edit#bookmark=id.iiumwic0jphr - selects.bzl: Add config_setting_group for config_setting AND/OR-chaining Implements - https://github.com/bazelbuild/proposals/blob/master/designs/2018-11-09-config-setting-chaining.md. + https://github.com/bazelbuild/proposals/blob/HEAD/designs/2018-11-09-config-setting-chaining.md. - Make sets.bzl point to new_sets.bzl instead of old_sets.bzl. new_sets.bzl and old_sets.bzl should be removed in the following skylib release. diff --git a/docs/build_test_doc.md b/docs/build_test_doc.md index 6f3c597..b1cd020 100755 --- a/docs/build_test_doc.md +++ b/docs/build_test_doc.md @@ -57,7 +57,7 @@ Typical usage:
- The common attributes for tests. + The common attributes for tests.
- The common attributes for tests. + The common attributes for tests.
- The common attributes for binaries. + The common attributes for binaries.
- The common attributes for tests. + The common attributes for tests.
- Command line arguments of the binary.
Subject to$(location)
expansion.
+ Command line arguments of the binary.
Subject to$(location)
expansion.
- Environment variables of the action.
Subject to $(location)
expansion.
+ Environment variables of the action.
Subject to $(location)
expansion.
file2
.
file2: Label of the file to compare to file1
.
- **kwargs: The common attributes for tests.
+ **kwargs: The common attributes for tests.
"""
_diff_test(
name = name,
diff --git a/rules/native_binary.bzl b/rules/native_binary.bzl
index 7d885a0..6675a92 100644
--- a/rules/native_binary.bzl
+++ b/rules/native_binary.bzl
@@ -76,7 +76,7 @@ def native_binary(name, src, out, data = None, **kwargs):
src: label; path of the pre-built executable
out: output; an output name for the copy of the binary. (Bazel requires that this rule make a copy of 'src'.)
data: list of labels; data dependencies
- **kwargs: The common attributes for binaries.
+ **kwargs: The common attributes for binaries.
"""
_native_binary(
name = name,
@@ -101,7 +101,7 @@ def native_test(name, src, out, data = None, **kwargs):
src: label; path of the pre-built executable
out: output; an output name for the copy of the binary. (Bazel requires that this rule make a copy of 'src'.)
data: list of labels; data dependencies
- **kwargs: The common attributes for tests.
+ **kwargs: The common attributes for tests.
"""
_native_test(
name = name,
diff --git a/rules/run_binary.bzl b/rules/run_binary.bzl
index 10f1ab5..c251019 100644
--- a/rules/run_binary.bzl
+++ b/rules/run_binary.bzl
@@ -76,7 +76,7 @@ run_binary = rule(
),
"env": attr.string_dict(
doc = "Environment variables of the action.$(location)
" +
+ " $(location)
" +
" expansion.",
),
"srcs": attr.label_list(
@@ -91,7 +91,7 @@ run_binary = rule(
),
"args": attr.string_list(
doc = "Command line arguments of the binary.$(location)
" +
+ "$(location)
" +
" expansion.",
),
},