Skip to content

Commit d015c04

Browse files
authored
Merge pull request #525 from zenspider/zenspider/rule
Fix rule example to be correct
2 parents 3691f19 + 54cbaa0 commit d015c04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/rake/dsl_definition.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def namespace(name=nil, &block) # :doc:
145145
#
146146
# Example:
147147
# rule '.o' => '.c' do |t|
148-
# sh 'cc', '-o', t.name, t.source
148+
# sh 'cc', '-c', '-o', t.name, t.source
149149
# end
150150
#
151151
def rule(*args, &block) # :doc:

0 commit comments

Comments
 (0)