From 92325e424c66dfc7a18e292be3c6dc68e16fdb50 Mon Sep 17 00:00:00 2001 From: Marius Kempe Date: Sat, 6 Aug 2011 23:11:07 +0200 Subject: [PATCH] two minor improvements to the -h output --- QuoraCrawler.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/QuoraCrawler.rb b/QuoraCrawler.rb index e999c45..a170feb 100644 --- a/QuoraCrawler.rb +++ b/QuoraCrawler.rb @@ -14,7 +14,7 @@ OptionParser.new do |opts| opts.banner = "Usage: example.rb [options] 'first-last'. No options to crawl all." - opts.on("-a", "--answers", "Crawl Answers only") do |v| + opts.on("-a", "--answers", "Crawl answers only") do |v| options[:answers] = v end @@ -46,7 +46,7 @@ options[:profile] = v end - opts.on("-y", "--followingquestions", "Crawl the ONLY your logged in account is following") do |v| + opts.on("-y", "--followingquestions", "Crawl questions you are following; ONLY works for your logged in account") do |v| options[:following_questions] = v end