summaryrefslogtreecommitdiff
path: root/tool/probes_to_wiki.rb
diff options
context:
space:
mode:
Diffstat (limited to 'tool/probes_to_wiki.rb')
-rw-r--r--tool/probes_to_wiki.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/tool/probes_to_wiki.rb b/tool/probes_to_wiki.rb
index 75b263aaaf..ba8204c188 100644
--- a/tool/probes_to_wiki.rb
+++ b/tool/probes_to_wiki.rb
@@ -1,12 +1,12 @@
###
# Converts the probes.d file to redmine wiki format. Usage:
#
-# ruby probes.d
+# ruby tool/probes_to_wiki.rb probes.d
-File.read(ARGV[0]).scan(/\/\*.*?\*\//m).grep(/ruby/).each do |comment|
+File.read(ARGV[0]).scan(/\/\*.*?\*\//m).grep(/ruby/) do |comment|
comment.gsub!(/^(\/\*|[ ]*)|\*\/$/, '').strip!
puts
- comment.each_line.each_with_index do |line, i|
+ comment.each_line.with_index do |line, i|
if i == 0
puts "=== #{line.chomp}"
else