Skip to content

Commit b79227f

Browse files
committed
Fixing typos
1 parent ad7df9f commit b79227f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/quick-start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,9 +230,9 @@ To cleanup all the components we bought up:
230230
| Storm | ```ps aux | grep [a]pache-storm-1.0.3 | awk '{print $2}' | xargs kill``` |
231231
| File System | ```rm -rf $BULLET_HOME /tmp/dev-storm-zookeeper /tmp/jetty-*``` |
232232

233-
If you were following the [Quicker Start](#quicker-start) script, you can also do
233+
You can also do:
234234
```bash
235-
curl -sLo- https://raw.githubusercontent.com/yahoo/bullet-docs/v0.1.2/examples/install-all.sh | bash
235+
curl -sLo- https://raw.githubusercontent.com/yahoo/bullet-docs/v0.1.2/examples/install-all.sh | bash -s cleanup
236236
```
237237

238238
## What did we do?

examples/install-all.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ cleanup() {
201201
}
202202

203203
teardown() {
204-
println "Killing all Bullet components..."
204+
println "Killing and cleaning up all Bullet components..."
205205
cleanup &> /dev/null
206206
println "Done!"
207207
}
@@ -243,7 +243,7 @@ clean() {
243243
unset_all
244244
}
245245

246-
if [ $# -eq 0]; then
246+
if [ $# -eq 0 ]; then
247247
launch
248248
else
249249
clean

0 commit comments

Comments
 (0)