abilities syntax has -> implements

This commit is contained in:
Bryce Miller 2023-05-24 21:29:38 -04:00
parent 55bb8f4b6c
commit 91e37293a2
No known key found for this signature in database
GPG key ID: F1E97BF8DF152350
90 changed files with 438 additions and 437 deletions

View file

@ -3150,7 +3150,7 @@ mod solve_expr {
Dict.insert
"#
),
"Dict k v, k, v -> Dict k v | k has Hash & Eq",
"Dict k v, k, v -> Dict k v | k implements Hash & Eq",
);
}
@ -3423,7 +3423,7 @@ mod solve_expr {
reconstructPath
"#
),
"Dict position position, position -> List position | position has Hash & Eq",
"Dict position position, position -> List position | position implements Hash & Eq",
);
}
@ -3480,7 +3480,7 @@ mod solve_expr {
astar
"#
),
"Model position -> Result position [KeyNotFound] | position has Hash & Eq",
"Model position -> Result position [KeyNotFound] | position implements Hash & Eq",
);
}