Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
znz committed Oct 13, 2016
1 parent 592e9df commit baaa2c1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -4088,7 +4088,7 @@ Ruby/Libgda:
Ruby/GLib:
* Improve signal handlers with pthread ruby(--enable-pthread). [Sjoerd Simons]
* Added new fundamental object for other bindings. [Sjoerd Simons]
* GLib::Source#remove -> GLib::Soruce.remove [Kouhei Sutou]
* GLib::Source#remove -> GLib::Source.remove [Kouhei Sutou]
* Added new macros (GLIST2ARYF, GLIST2ARY2F, GSLIST2ARYF, GLIST2ARY2F,
G_PROTECT_CALLBACK) [Masao Mutoh]
* Added GLib.win32_locale, GLib, win32_locale_filename_from_utf8 [Kouhei Sutou]
Expand Down
6 changes: 3 additions & 3 deletions glib2/ext/glib2/rbgutil.c
Original file line number Diff line number Diff line change
Expand Up @@ -138,20 +138,20 @@ rbgutil_key_equal(VALUE rb_key, const char *key)
}

static gboolean
rbg_interrupt_prepare (G_GNUC_UNUSED GSource *soruce,
rbg_interrupt_prepare (G_GNUC_UNUSED GSource *source,
G_GNUC_UNUSED gint *timeout)
{
return rb_thread_interrupted(rb_thread_current());
}

static gboolean
rbg_interrupt_check (G_GNUC_UNUSED GSource *soruce)
rbg_interrupt_check (G_GNUC_UNUSED GSource *source)
{
return rb_thread_interrupted(rb_thread_current());
}

static gboolean
rbg_interrupt_dispatch (G_GNUC_UNUSED GSource *soruce,
rbg_interrupt_dispatch (G_GNUC_UNUSED GSource *source,
GSourceFunc callback,
gpointer user_data)
{
Expand Down

0 comments on commit baaa2c1

Please sign in to comment.