diff options
| author | Tatsuhiko Kubo <[email protected]> | 2014-08-26 07:47:20 +0900 |
|---|---|---|
| committer | Tatsuhiko Kubo <[email protected]> | 2014-08-27 19:13:40 +0900 |
| commit | 3202938099c6eabbfa387b2464c4a607a1972fc0 (patch) | |
| tree | 40f3b3d4273d04084b12efe4afca9a634bfc6d0c /src/codegen.c | |
| parent | ecda19f4024cd853d933b059ba9f082a42837096 (diff) | |
| download | mruby-3202938099c6eabbfa387b2464c4a607a1972fc0.tar.gz mruby-3202938099c6eabbfa387b2464c4a607a1972fc0.zip | |
Add a missing space after ",".
Diffstat (limited to 'src/codegen.c')
| -rw-r--r-- | src/codegen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen.c b/src/codegen.c index b2b1e4150..f7d7625eb 100644 --- a/src/codegen.c +++ b/src/codegen.c @@ -2299,7 +2299,7 @@ codegen(codegen_scope *s, node *tree, int val) { int a = new_msym(s, sym(tree->car)); int b = new_msym(s, sym(tree->cdr)); - int c = new_msym(s, mrb_intern_lit(s->mrb,"alias_method")); + int c = new_msym(s, mrb_intern_lit(s->mrb, "alias_method")); genop(s, MKOP_A(OP_TCLASS, cursp())); push(); |
