From 94e466aaf1ff674eb6eb90442f5c205397b017c5 Mon Sep 17 00:00:00 2001 From: Bradford Condon Date: Mon, 9 Oct 2017 17:18:00 -0400 Subject: [PATCH] typo simple typo, >Together, the target, dependencies, and actions form a **a** rule. --- episodes/02-makefiles.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/episodes/02-makefiles.md b/episodes/02-makefiles.md index 79625f39..8056f681 100644 --- a/episodes/02-makefiles.md +++ b/episodes/02-makefiles.md @@ -52,7 +52,7 @@ Let us go through each line in turn: your cursor from one side of the TAB to the other. It should jump four or more spaces. * Together, the target, dependencies, and actions form a - a [rule]({{ page.root }}/reference/#rule). + [rule]({{ page.root }}/reference/#rule). Our rule above describes how to build the target `isles.dat` using the action `python wordcount.py` and the dependency `books/isles.txt`.