@@ -9,7 +9,7 @@ static VALUE appender_initialize(VALUE klass, VALUE con, VALUE schema, VALUE tab
99static VALUE appender_error_message (VALUE self );
1010static VALUE appender__append_bool (VALUE self , VALUE val );
1111static VALUE appender__append_int8 (VALUE self , VALUE val );
12- static VALUE appender__apend_int16 (VALUE self , VALUE val );
12+ static VALUE appender__append_int16 (VALUE self , VALUE val );
1313static VALUE appender__append_int32 (VALUE self , VALUE val );
1414static VALUE appender__append_int64 (VALUE self , VALUE val );
1515static VALUE appender_append_uint8 (VALUE self , VALUE val );
@@ -138,7 +138,7 @@ static VALUE appender__append_int8(VALUE self, VALUE val) {
138138}
139139
140140/* :nodoc: */
141- static VALUE appender__apend_int16 (VALUE self , VALUE val ) {
141+ static VALUE appender__append_int16 (VALUE self , VALUE val ) {
142142 rubyDuckDBAppender * ctx ;
143143 int16_t i16val = (int16_t )NUM2INT (val );
144144
@@ -442,7 +442,7 @@ void rbduckdb_init_duckdb_appender(void) {
442442 rb_define_private_method (cDuckDBAppender , "_close" , appender__close , 0 );
443443 rb_define_private_method (cDuckDBAppender , "_append_bool" , appender__append_bool , 1 );
444444 rb_define_private_method (cDuckDBAppender , "_append_int8" , appender__append_int8 , 1 );
445- rb_define_private_method (cDuckDBAppender , "_append_int16" , appender__apend_int16 , 1 );
445+ rb_define_private_method (cDuckDBAppender , "_append_int16" , appender__append_int16 , 1 );
446446 rb_define_private_method (cDuckDBAppender , "_append_int32" , appender__append_int32 , 1 );
447447 rb_define_private_method (cDuckDBAppender , "_append_int64" , appender__append_int64 , 1 );
448448 rb_define_private_method (cDuckDBAppender , "_append_date" , appender__append_date , 3 );
0 commit comments