aboutsummaryrefslogtreecommitdiff
path: root/posts
diff options
context:
space:
mode:
authorAkshay <[email protected]>2019-12-31 13:33:17 +0000
committerAkshay <[email protected]>2019-12-31 13:33:17 +0000
commit6f87531d97905bd31c106b19a4405b9f349a2516 (patch)
tree64211d54507e9c061e21c63d0c42260acdd1c1aa /posts
parent79e1e808f0129e066e66e06bf04b9c930de91a57 (diff)
typo
Diffstat (limited to 'posts')
-rw-r--r--posts/color_conundrum.md2
-rw-r--r--posts/don't_repeat_yourself.md9
2 files changed, 1 insertions, 10 deletions
diff --git a/posts/color_conundrum.md b/posts/color_conundrum.md
index 0e938b7..d051ae4 100644
--- a/posts/color_conundrum.md
+++ b/posts/color_conundrum.md
@@ -8,7 +8,7 @@ does. It is difficult for the human eye to filter out noise
8in rainbow barf. Use color to draw attention, not diverge 8in rainbow barf. Use color to draw attention, not diverge
9it. 9it.
10 10
11At the same time, a book devoid of color is *boring!*. What 11At the same time, a book devoid of color is *boring!* What
12is the takeaway from this 10 line paragraph? What are the 12is the takeaway from this 10 line paragraph? What are the
13technical terms used? 13technical terms used?
14 14
diff --git a/posts/don't_repeat_yourself.md b/posts/don't_repeat_yourself.md
deleted file mode 100644
index d39267e..0000000
--- a/posts/don't_repeat_yourself.md
+++ /dev/null
@@ -1,9 +0,0 @@
1Looping constructs are bad. Consider this:
2
3```
4for (int i = 0; i < arr.len(); i++) { ... }
5```
6
7It is not obvious at all, what this loop does. Is it
8supposed to iterate over the elements of the array? Is it
9just a variable binding that increases up to `arr.len()`?