summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-03-11 11:29:49 -0700
committerYukihiro "Matz" Matsumoto <[email protected]>2013-03-11 11:29:49 -0700
commitf927ab98154ad18be1dab5a63a5469556c63b6fa (patch)
tree130367ff4b960bdf8fc59862f7435aac4b0fd3c5
parent5e02ddfec0ad166824909caecb66995bceef22be (diff)
parentc261fffa68fe5ce0ad64b7b7272148de99b62902 (diff)
downloadmruby-f927ab98154ad18be1dab5a63a5469556c63b6fa.tar.gz
mruby-f927ab98154ad18be1dab5a63a5469556c63b6fa.zip
Merge pull request #978 from carsonmcdonald/timetypofix
Fix typo
-rw-r--r--mrbgems/mruby-time/src/time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mrbgems/mruby-time/src/time.c b/mrbgems/mruby-time/src/time.c
index ecc9090f1..3d806c140 100644
--- a/mrbgems/mruby-time/src/time.c
+++ b/mrbgems/mruby-time/src/time.c
@@ -130,7 +130,7 @@ mrb_time_free(mrb_state *mrb, void *ptr)
static struct mrb_data_type mrb_time_type = { "Time", mrb_time_free };
/** Updates the datetime of a mrb_time based on it's timezone and
-seconds setting. Returns self on cussess, NULL of failure. */
+seconds setting. Returns self on success, NULL of failure. */
static struct mrb_time*
mrb_time_update_datetime(struct mrb_time *self)
{