Skip to content

Commit

Permalink
Fix scheduling example docs not committing changes (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelCourtney authored Sep 24, 2024
1 parent 6d2d96d commit b66ea9b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/scheduling-and-constraints/procedural/scheduling.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ class MyActivityEveryHour: Goal {
mapOf() // assuming it takes no arguments
)
}

plan.commit()
}
}
```
Expand All @@ -130,6 +132,8 @@ public class MyActivityEveryHour implements Goal {
Map.of()
);
}

plan.commit();
}
}
```
Expand Down Expand Up @@ -162,6 +166,8 @@ class MyActivityEveryHour: Goal {
mapOf() // assuming it takes no arguments
)
}

plan.commit()
}
}
```
Expand All @@ -184,6 +190,8 @@ public class MyActivityEveryHour implements Goal {
Map.of()
);
}

plan.commit();
}
}
```
Expand Down

0 comments on commit b66ea9b

Please sign in to comment.