Skip to content

Commit 1c89c9b

Browse files
committed
tweak
1 parent 80a2f1c commit 1c89c9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manuscript/11-tips-and-tricks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Show a notice message to user to install entr if not installed ons system:
125125
{language=shell, line-numbers=off}
126126
$ if command -v entr > /dev/null; then find . -print | grep -i '.*[.]go' | entr -c go test ./...; else go test ./...; echo "\nInstall entr(1) to automatically rebuild documentation when files change. \nSee http://entrproject.org/"; fi
127127

128-
Here's why you want patterns like that, you can put it into a [`Makefile`](https://en.wikipedia.org/wiki/Makefile)
128+
Here's why you want patterns like that: you can put it into a [`Makefile`](https://en.wikipedia.org/wiki/Makefile)
129129
and commit it to your project's [VCS](https://en.wikipedia.org/wiki/Version_control)
130130
so you and other developers can have access to this reusable command across
131131
different UNIX-like systems, with and without that certain program installed.

0 commit comments

Comments
 (0)