From 646ecd66df55cec4d596feee7bbd19b76761d8f0 Mon Sep 17 00:00:00 2001 From: Tay Ray Chuan Date: Wed, 8 Feb 2012 20:00:09 +0800 Subject: [PATCH 1/2] tasks.rb: fix indentation of code block --- lib/rocco/tasks.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/rocco/tasks.rb b/lib/rocco/tasks.rb index 828e87a..5b88fd0 100644 --- a/lib/rocco/tasks.rb +++ b/lib/rocco/tasks.rb @@ -37,10 +37,10 @@ # like to use to highlight the code, as well as the comment characters for the # language in the `options` hash: # -# Rocco::make 'html/', 'lib/thing/**/*.rb', { -# :language => 'io', -# :comment_chars => '#' -# } +# Rocco::make 'html/', 'lib/thing/**/*.rb', { +# :language => 'io', +# :comment_chars => '#' +# } # # Might be nice to defer this until we actually need to build docs but this From 7b514a77432d9ab8c60a7ce21e7748dbe564e5c9 Mon Sep 17 00:00:00 2001 From: Tay Ray Chuan Date: Thu, 9 Feb 2012 15:15:34 +0800 Subject: [PATCH 2/2] tasks.rb: add colon to lead into code block --- lib/rocco/tasks.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rocco/tasks.rb b/lib/rocco/tasks.rb index 5b88fd0..0543a79 100644 --- a/lib/rocco/tasks.rb +++ b/lib/rocco/tasks.rb @@ -15,7 +15,7 @@ # # It's a good idea to guard against Rocco not being available, since your # Rakefile will fail to load otherwise. Consider doing something like this, -# so that your Rakefile will still work +# so that your Rakefile will still work: # # begin # require 'rocco/tasks'