Skip to content

Commit

Permalink
Merge pull request macournoyer#54 from eyko/master
Browse files Browse the repository at this point in the history
Typo fix
  • Loading branch information
macournoyer committed Jun 2, 2011
2 parents 89e3943 + e41f736 commit cff753c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/thin/runner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def parser
opts.on("-f", "--force", "Force the execution of the command") { @options[:force] = true }
opts.on( "--max-conns NUM", "Maximum number of open file descriptors " +
"(default: #{@options[:max_conns]})",
"Might require sudo to set higher then 1024") { |num| @options[:max_conns] = num.to_i } unless Thin.win?
"Might require sudo to set higher than 1024") { |num| @options[:max_conns] = num.to_i } unless Thin.win?
opts.on( "--max-persistent-conns NUM",
"Maximum number of persistent connections",
"(default: #{@options[:max_persistent_conns]})") { |num| @options[:max_persistent_conns] = num.to_i }
Expand Down

0 comments on commit cff753c

Please sign in to comment.