From be2b706cb1353018065e6ac2b5e758c6b34bc576 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Fri, 4 Sep 2015 14:36:22 -0500 Subject: [PATCH] Add some emphasis. --- ruby/invoking-rake-tasks-multiple-times.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruby/invoking-rake-tasks-multiple-times.md b/ruby/invoking-rake-tasks-multiple-times.md index 0598209..e477a69 100644 --- a/ruby/invoking-rake-tasks-multiple-times.md +++ b/ruby/invoking-rake-tasks-multiple-times.md @@ -18,7 +18,7 @@ end This doesn't work though. No matter how many items are in the list, the `build` task only seems to get run once. This is because by default tasks can only be invoked once in a given context. To get around this, the task -needs to be reenabled after each invocation. +needs to be _reenabled_ after each invocation. ```ruby namespace :build do