Skip to content

Commit 746337c

Browse files
michaelklishinmergify[bot]
authored andcommitted
BUILD.bazel: fix a few typos
(cherry picked from commit 439bc35) # Conflicts: # BUILD.bazel
1 parent d13727e commit 746337c

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

BUILD.bazel

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,39 +157,44 @@ rabbitmq_run(
157157
visibility = ["//visibility:public"],
158158
)
159159

160-
# Allow us to `bazel run broker`
160+
# Allows us to `bazel run broker`
161161
# for the equivalent of `make run-broker`
162162
rabbitmq_run_command(
163163
name = "broker",
164164
rabbitmq_run = ":rabbitmq-run",
165165
subcommand = "run-broker",
166166
)
167167

168-
# Allow us to `bazel run background-broker`
168+
# Allows us to `bazel run background-broker`
169169
# to start a broker in the background
170170
rabbitmq_run_command(
171171
name = "background-broker",
172172
rabbitmq_run = ":rabbitmq-run",
173173
subcommand = "start-background-broker",
174174
)
175175

176-
# Allow us to `bazel run stop-broker`
176+
# Allows us to `bazel run stop-broker`
177177
# Useful is broker started in the background
178178
rabbitmq_run_command(
179179
name = "stop-broker",
180180
rabbitmq_run = ":rabbitmq-run",
181181
subcommand = "stop-node",
182182
)
183183

184+
<<<<<<< HEAD
184185
# Allow us to `bazel run start-cluster`
186+
=======
187+
188+
# Allows us to `bazel run start-cluster`
189+
>>>>>>> 439bc35916 (BUILD.bazel: fix a few typos)
185190
# for the equivalent of `make start-cluster`
186191
rabbitmq_run_command(
187192
name = "start-cluster",
188193
rabbitmq_run = ":rabbitmq-run",
189194
subcommand = "start-cluster",
190195
)
191196

192-
# Allow us to `bazel run stop-cluster`
197+
# Allows us to `bazel run stop-cluster`
193198
# for the equivalent of `make stop-cluster`
194199
rabbitmq_run_command(
195200
name = "stop-cluster",

0 commit comments

Comments
 (0)