From 01c7d23b3d75bb0547c656bfc8b00e16a29e7d01 Mon Sep 17 00:00:00 2001 From: Vedansh4 <149423052+Vedansh4@users.noreply.github.com> Date: Thu, 18 Jun 2026 12:44:16 +0530 Subject: [PATCH] Fix typo in intersection example comment Corrected "thia" to "this" in 07_Day_Sets/07_sets.md. --- 07_Day_Sets/07_sets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/07_Day_Sets/07_sets.md b/07_Day_Sets/07_sets.md index 26ca08e40..111d3d58d 100644 --- a/07_Day_Sets/07_sets.md +++ b/07_Day_Sets/07_sets.md @@ -275,7 +275,7 @@ Intersection returns a set of items which are in both the sets or using _&_ symb st1 = {'item1', 'item2', 'item3', 'item4'} st2 = {'item3', 'item2'} st1.intersection(st2) # {'item3', 'item2'} -# or using thia : st1 & st2 +# or using this: st1 & st2 ``` **Example:**