Skip to content

Commit 5c7f774

Browse files
committed
Reword note
1 parent d23cf03 commit 5c7f774

File tree

1 file changed

+2
-2
lines changed
  • exercises/concept/elyses-destructured-enchantments/.meta

1 file changed

+2
-2
lines changed

exercises/concept/elyses-destructured-enchantments/.meta/exemplar.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export function shiftThreeCardsAround([a, b, c]) {
5353
* @returns {Card[]} the pile named chosen
5454
*/
5555
export function pickNamedPile({ chosen }) {
56-
// 🚨 Do NOT use piles.chosen or piles.disregarded.
56+
// 🚨 Do NOT write piles.chosen or piles.disregarded.
5757
return chosen;
5858
}
5959

@@ -65,7 +65,7 @@ export function pickNamedPile({ chosen }) {
6565
*/
6666
export function swapNamedPile({ chosen: disregarded, disregarded: chosen }) {
6767
// 🪄 Don't break the magic.
68-
// 🚨 Do NOT use piles.chosen or piles.disregarded.
68+
// 🚨 Do NOT write piles.chosen or piles.disregarded.
6969
// 🚨 Do NOT touch the next line or Elyse will accidentally reveal the trick.
7070
return { chosen, disregarded };
7171
}

0 commit comments

Comments
 (0)