From f3cf22df23e8dfe2cde93eff801a1316746a3d4e Mon Sep 17 00:00:00 2001 From: Eric Willigers Date: Thu, 25 Jun 2026 20:09:15 +1000 Subject: [PATCH] pursers-pantry: remove arrays remark http://forum.exercism.org/t/factor-track-feedback/60226/10 --- exercises/concept/pursers-pantry/.docs/introduction.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/exercises/concept/pursers-pantry/.docs/introduction.md b/exercises/concept/pursers-pantry/.docs/introduction.md index 4d446e7..514dc4e 100644 --- a/exercises/concept/pursers-pantry/.docs/introduction.md +++ b/exercises/concept/pursers-pantry/.docs/introduction.md @@ -10,10 +10,10 @@ Hashtables in Factor are *associative arrays* — collections of H{ { "coal" 1 } { "wood" 2 } } . ``` -`H{ }` is an empty hashtable. Unlike arrays, hashtables are *mutable* -— `clone` first if you need to leave the original alone. Printing a -hashtable shows its entries, but the order isn't tied to insertion -order — hashtables are unordered. +`H{ }` is an empty hashtable. Hashtables are *mutable*, growing and +shrinking as you add and remove keys — `clone` first if you need to +leave the original alone. Printing a hashtable shows its entries, but +the order isn't tied to insertion order — hashtables are unordered. ## Reading