1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-26 19:48:01 +02:00

Fixes while working on ref for dictionary

This commit is contained in:
Brian Fiete 2020-05-01 09:12:50 -07:00
parent 191d0337d0
commit 70d32885b1
6 changed files with 29 additions and 23 deletions

View file

@ -120,7 +120,7 @@ namespace System
for (let kv in envVars)
{
keys[idx] = kv.key;
values[idx] = *kv.value;
values[idx] = kv.value;
++idx;
}
@ -158,7 +158,7 @@ namespace System
for (let kv in envVars)
{
keys[idx] = kv.key;
values[idx] = *kv.value;
values[idx] = kv.value;
++idx;
}