Skip to content

Commit

Permalink
yet more getting-started tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
sdcondon committed Jun 16, 2024
1 parent 0376a2b commit 9f989e9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Action moveToBlock = new(
& !On(block, from)
& !Clear(toBlock)));
// The other action of our domain - 'moveToTable'.
// Our second action schema - 'moveToTable'.
// Separate from 'moveToBlock' because of the different behaviour of table and block w.r.t being Clear or not.
Action moveToTable = new(
identifier: nameof(moveToTable),
Expand All @@ -104,7 +104,7 @@ Action moveToTable = new(
& !On(block, from)));
// Note that problems require action schemas to be IQueryable - ultimately to allow
// for efficent action lookup when there are a large numer of possible actions. This
// for efficent action lookup when there are a large number of possible actions. This
// might change by the time this package reaches v1.0..
var actionSchemas = new[] { moveToBlock, moveToTable }.AsQueryable();
Expand Down

0 comments on commit 9f989e9

Please sign in to comment.