mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Add a space aftre bracket.
This commit is contained in:
+1
-1
@@ -739,7 +739,7 @@ mrb_hash_values(mrb_state *mrb, mrb_value hash)
|
||||
if (!h) return mrb_ary_new(mrb);
|
||||
ary = mrb_ary_new_capa(mrb, kh_size(h));
|
||||
for (k = kh_begin(h); k != kh_end(h); k++) {
|
||||
if (kh_exist(h, k)){
|
||||
if (kh_exist(h, k)) {
|
||||
mrb_hash_value hv = kh_value(h,k);
|
||||
|
||||
mrb_ary_set(mrb, ary, hv.n, hv.v);
|
||||
|
||||
Reference in New Issue
Block a user