From 738a72fd1c6aa604e6b4d44c6317c3e7e979702a Mon Sep 17 00:00:00 2001
From: Patrick Jaberg <patrick@codeatwork.com>
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.