From d3ec7ba4ae55fe5014ec4db234aa0c869d93d018 Mon Sep 17 00:00:00 2001 From: Patrick Jaberg Date: Tue, 28 Nov 2023 07:23:59 -0600 Subject: [PATCH] Fix small typo (from "owm" to "own") MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The title says it all. 😄 --- exercises/concept/gotta-snatch-em-all/.docs/instructions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/gotta-snatch-em-all/.docs/instructions.md b/exercises/concept/gotta-snatch-em-all/.docs/instructions.md index 5ce264cd4..53a7e8fbc 100644 --- a/exercises/concept/gotta-snatch-em-all/.docs/instructions.md +++ b/exercises/concept/gotta-snatch-em-all/.docs/instructions.md @@ -17,7 +17,7 @@ new_collection("Newthree") ## 2. Grow the collection -Once you have a collection, it takes a life of its owm and must grow. +Once you have a collection, it takes a life of its own and must grow. Implement `add_card`, which takes a card and a collection, and returns a tuple with two values: a `Bool` that indicates if the card was already in the collection, and the collection with the card added.