Skip to content
This repository has been archived by the owner on Jun 15, 2019. It is now read-only.

Commit

Permalink
fixed problem where .wrapped() was being called on OptionsParser, whe…
Browse files Browse the repository at this point in the history
…n it's a String method
  • Loading branch information
parkr committed Aug 18, 2011
1 parent 584249b commit 20d8820
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tit.rb
Expand Up @@ -266,7 +266,7 @@ def update_count(count)
end

def tuts(*strs)
strs.each { |s| puts s.wrapped(@cols) }
strs.each { |s| puts s.to_s.wrapped(@cols) }
end

def error(msg)
Expand Down

0 comments on commit 20d8820

Please sign in to comment.