diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-03-01 08:25:30 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-03-01 08:25:30 -0800 |
| commit | d2e3d8c57e9cc3b65e78bfcb71773235d097ed79 (patch) | |
| tree | 4a94737c3dc3f0d47cb8d981059a93eb9d0dd54b | |
| parent | a4d37bafdc878512ecc6d99a7016ab0439ccba91 (diff) | |
| parent | 145c1fe275966b233a2719f7e9f959d5c6e90327 (diff) | |
| download | mruby-d2e3d8c57e9cc3b65e78bfcb71773235d097ed79.tar.gz mruby-d2e3d8c57e9cc3b65e78bfcb71773235d097ed79.zip | |
Merge pull request #924 from carsonmcdonald/timetypos
Fix two typos
| -rw-r--r-- | mrbgems/mruby-time/src/time.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mrbgems/mruby-time/src/time.c b/mrbgems/mruby-time/src/time.c index ed40c5279..ecc9090f1 100644 --- a/mrbgems/mruby-time/src/time.c +++ b/mrbgems/mruby-time/src/time.c @@ -662,7 +662,7 @@ mrb_time_usec(mrb_state *mrb, mrb_value self) } /* 15.2.19.7.27 */ -/* Sets the timzeone attribute of the Time object to UTC. */ +/* Sets the timezone attribute of the Time object to UTC. */ static mrb_value mrb_time_utc(mrb_state *mrb, mrb_value self) { @@ -677,7 +677,7 @@ mrb_time_utc(mrb_state *mrb, mrb_value self) } /* 15.2.19.7.28 */ -/* Returns true if this time is in the UTC timze zone false if not. */ +/* Returns true if this time is in the UTC timezone false if not. */ static mrb_value mrb_time_utcp(mrb_state *mrb, mrb_value self) { |
