@@ -157,39 +157,39 @@ 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`
162162rabbitmq_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
170170rabbitmq_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
178178rabbitmq_run_command (
179179 name = "stop-broker" ,
180180 rabbitmq_run = ":rabbitmq-run" ,
181181 subcommand = "stop-node" ,
182182)
183183
184- # Allow us to `bazel run start-cluster`
184+ # Allows us to `bazel run start-cluster`
185185# for the equivalent of `make start-cluster`
186186rabbitmq_run_command (
187187 name = "start-cluster" ,
188188 rabbitmq_run = ":rabbitmq-run" ,
189189 subcommand = "start-cluster" ,
190190)
191191
192- # Allow us to `bazel run stop-cluster`
192+ # Allows us to `bazel run stop-cluster`
193193# for the equivalent of `make stop-cluster`
194194rabbitmq_run_command (
195195 name = "stop-cluster" ,
0 commit comments