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:
parent
191d0337d0
commit
70d32885b1
6 changed files with 29 additions and 23 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue