Skip to content

Commit bbe2cf4

Browse files
authored
[docs/cargo.md] Add missing comma (bazelbuild#2456)
1 parent c06564d commit bbe2cf4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cargo/private/cargo_build_script_wrapper.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def cargo_build_script(
7373
# one.
7474
build_script_env = {
7575
"SOME_TOOL_OR_FILE": "$(execpath @tool//:binary)"
76-
}
76+
},
7777
# Optional data/tool dependencies
7878
data = ["@tool//:binary"],
7979
)

docs/cargo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ cargo_build_script(
110110
# one.
111111
build_script_env = {
112112
"SOME_TOOL_OR_FILE": "$(execpath @tool//:binary)"
113-
}
113+
},
114114
# Optional data/tool dependencies
115115
data = ["@tool//:binary"],
116116
)

docs/flatten.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1609,7 +1609,7 @@ cargo_build_script(
16091609
# one.
16101610
build_script_env = {
16111611
"SOME_TOOL_OR_FILE": "$(execpath @tool//:binary)"
1612-
}
1612+
},
16131613
# Optional data/tool dependencies
16141614
data = ["@tool//:binary"],
16151615
)

0 commit comments

Comments
 (0)