Navigation Menu

Skip to content

Commit

Permalink
Fix syntax error: Remove too many ")"
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Jun 27, 2014
1 parent dcb31a8 commit 5252a2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/droonga/forwarder.rb
Expand Up @@ -75,7 +75,7 @@ def resume
private
def output(receiver, message, command, arguments, options={})
logger.trace("output: start")
if not receiver.is_a?(String) or not command.is_a?(String))
if not receiver.is_a?(String) or not command.is_a?(String)
logger.trace("output: abort: invalid argument",
:receiver => receiver,
:command => command)
Expand Down

0 comments on commit 5252a2e

Please sign in to comment.