From b64294bdc2e4d1e810ca86dc653e182002ba8d40 Mon Sep 17 00:00:00 2001 From: Nathan Davis Olds Date: Fri, 17 Aug 2012 10:05:51 -0300 Subject: [PATCH] Typo "they syntax" to "the syntax" Typo "unlike with `rake` where they syntax might be something like" should read "unlike with `rake` where the syntax might be something like" --- index.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.markdown b/index.markdown index 1192709..1ad3cae 100644 --- a/index.markdown +++ b/index.markdown @@ -177,7 +177,7 @@ Namespaces have an implicit `default` task called if you address the namespace a $ cap backup -It is important to note here that when calling tasks from within tasks, unlike with `rake` where they syntax might be something like `Rake::Tasks['backup:db'].invoke`, with Capistrano you simply name the task as if it were any other ruby method. +It is important to note here that when calling tasks from within tasks, unlike with `rake` where the syntax might be something like `Rake::Tasks['backup:db'].invoke`, with Capistrano you simply name the task as if it were any other ruby method. When calling tasks cross-namespace, or for readability you can (and often should) prefix the task call with the namespace in which the task resides, for example: