Navigation Menu

Skip to content

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Oct 25, 2017
1 parent f2cebfa commit f1d4994
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions lib/groonga/command/parser.rb
@@ -1,6 +1,4 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2011-2015 Kouhei Sutou <kou@clear-code.com>
# Copyright (C) 2011-2017 Kouhei Sutou <kou@clear-code.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
Expand Down Expand Up @@ -59,8 +57,8 @@ def event_parse(data)
parser.on_load_start do |command|
yield(:on_load_start, command)
end
parser.on_load_columns do |command, header|
yield(:on_load_columns, command, header)
parser.on_load_columns do |command, columns|
yield(:on_load_columns, command, columns)
end
parser.on_load_value do |command, value|
yield(:on_load_value, command, value)
Expand Down

0 comments on commit f1d4994

Please sign in to comment.