Skip to content

Commit fc7fe63

Browse files
alexeaglemartaver
authored andcommitted
fix tab characters in docstrings (bazelbuild#1834)
These affect stardoc calculation of the auto-dedent
1 parent 2eb9523 commit fc7fe63

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

container/image.bzl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ _attrs = dicts.add(_layer.attrs, {
644644
The behavior between using `""` and `[]` may differ.
645645
Please see [#1448](https://github.com/bazelbuild/rules_docker/issues/1448)
646646
for more details.
647-
647+
648648
This field supports stamp variables.""",
649649
),
650650
"experimental_tarball_format": attr.string(
@@ -681,7 +681,7 @@ _attrs = dicts.add(_layer.attrs, {
681681
...
682682
},
683683
684-
The values of this field support stamp variables.""",
684+
The values of this field support stamp variables.""",
685685
),
686686
"launcher": attr.label(
687687
allow_single_file = True,
@@ -763,7 +763,7 @@ _attrs = dicts.add(_layer.attrs, {
763763
Because building the image never happens inside a Docker container,
764764
this user does not affect the other actions (e.g., adding files).
765765
766-
This field supports stamp variables.""",
766+
This field supports stamp variables.""",
767767
),
768768
"volumes": attr.string_list(
769769
doc = """List of volumes to mount.
@@ -778,7 +778,7 @@ _attrs = dicts.add(_layer.attrs, {
778778
Because building the image never happens inside a Docker container,
779779
this working directory does not affect the other actions (e.g., adding files).
780780
781-
This field supports stamp variables.""",
781+
This field supports stamp variables.""",
782782
),
783783
"_digester": attr.label(
784784
default = "//container/go/cmd/digester",

container/layer.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ _layer_attrs = dicts.add({
319319
...
320320
},
321321
322-
The values of this field support make variables (e.g., `$(FOO)`)
322+
The values of this field support make variables (e.g., `$(FOO)`)
323323
and stamp variables; keys support make variables as well.""",
324324
),
325325
"files": attr.label_list(

0 commit comments

Comments
 (0)