rake: update layout

This commit is contained in:
Rico Sta. Cruz 2018-03-03 08:07:02 +08:00
parent 472070d805
commit c729e5007f
No known key found for this signature in database
GPG Key ID: CAAD38AE2962619A
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
---
title: Rake
category: Ruby
layout: 2017/sheet
---
### Basic syntax
@ -15,7 +16,7 @@ namespace :foo do
task :baz => :dependency do
end
task :baz => [:dep1, :dep2, dep3] do
task :baz => [:dep1, :dep2, :dep3] do
end
end