Skip to content

Commit fd6b326

Browse files
committed
Add .gitattributes
1 parent 3403ff8 commit fd6b326

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

foreach/objects/obj_foreach_test/Create_0.gml

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ foreach_list(apples_list as (apple, i) {
1919
// map
2020

2121
var apples_map = ds_map_create();
22-
ds_map_add(apples_map, "red", "delicius");
22+
ds_map_add(apples_map, "red", "delicious");
2323
ds_map_add(apples_map, "green", "eww");
2424
ds_map_add(apples_map, "yellow", "yum");
2525

@@ -50,9 +50,9 @@ foreach_queue(apples_queue as (apple, i) {
5050
// priority
5151

5252
var apples_priority = ds_priority_create();
53-
ds_priority_add(apples_stack, "red", 10);
54-
ds_priority_add(apples_stack, "green", 30);
55-
ds_priority_add(apples_stack, "yellow", 20);
53+
ds_priority_add(apples_priority, "red", 10);
54+
ds_priority_add(apples_priority, "green", 30);
55+
ds_priority_add(apples_priority, "yellow", 20);
5656

5757
foreach_priority(apples_priority as (apple, priority) {
5858
show_debug_message(string(priority) + ": " + apple);
@@ -61,7 +61,7 @@ foreach_priority(apples_priority as (apple, priority) {
6161

6262
// struct
6363

64-
var apples_struct = { red : "delicius", green : "eww", yellow : "yum" };
64+
var apples_struct = { red : "delicious", green : "eww", yellow : "yum" };
6565

6666
foreach_struct(apples_struct as (taste, color) {
6767
show_debug_message(color + " is " + taste);

0 commit comments

Comments
 (0)