diff options
author | robochat <rjsteed@talk21.com> | 2015-09-22 07:41:35 +0000 |
---|---|---|
committer | robochat <rjsteed@talk21.com> | 2015-09-22 07:41:35 +0000 |
commit | a020a82521904da6289ada6c12904e75d4abab0b (patch) | |
tree | 2681f37f9708556d1906f464ddb731713d05995b /make.html.markdown | |
parent | 55e22c0a8cbf68158892790d2942bb594960943b (diff) |
fix two small bugs - tab error and quotation marks
Diffstat (limited to 'make.html.markdown')
-rw-r--r-- | make.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/make.html.markdown b/make.html.markdown index 9aca2c20..244d96e0 100644 --- a/make.html.markdown +++ b/make.html.markdown @@ -120,7 +120,7 @@ small/%.png: %.svg # Older makefiles might use suffix rules instead of pattern rules
.png.ps:
- @echo this rule is similar to a pattern rule.
+ @echo this rule is similar to a pattern rule.
# Tell make about the suffix rule
.SUFFIXES: .png
@@ -222,7 +222,7 @@ report: ifeq ($(sport),tennis)
@echo 'game, set, match'
else
- @echo 'They think it's all over; it is now'
+ @echo "They think it's all over; it is now"
endif
# There are also ifneq, ifdef, ifndef
|