From e28ea3f1e8fb898f59b25e35894b696a373c1f53 Mon Sep 17 00:00:00 2001 From: Wendy Kong Date: Wed, 11 Dec 2024 10:26:52 +0000 Subject: [PATCH] update readme in animal-sanctuary-registry rename the instructions so that it matches the boilerplate code --- challenges/animal-sanctuary-registry/description.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/challenges/animal-sanctuary-registry/description.md b/challenges/animal-sanctuary-registry/description.md index ff7c056..2e3e00c 100644 --- a/challenges/animal-sanctuary-registry/description.md +++ b/challenges/animal-sanctuary-registry/description.md @@ -12,9 +12,9 @@ Your task is to implement the following functions: 1. `add_animal_to_section`: This function should add an animal to a section in the registry. If the section does not exist, it should be created. If the animal is already in the section, it should not be added again. -2. `get_animals_in_section`: This function should return a list of animals sorted **alphabetically** in a given section. If the section does not exist, it should return an empty list. +2. `get_animals_in_section`: This function should return a list of animals **sorted alphabetically** in a given section. If the section does not exist, it should return an empty list. -3. `get_all_animals`: This function should return a copy of the entire registry with all animals **sorted alphabetically** in each section. +3. `get_all_animals_sorted`: This function should return a copy of the entire registry with all animals **sorted alphabetically** in each section. ## Example