From 112a64ac67a9966f43f591a4f7f7f5234da20c0e Mon Sep 17 00:00:00 2001 From: Alvin Philips Date: Tue, 19 Oct 2021 16:46:25 +0530 Subject: [PATCH] Fixed typo Changed it's (it is) to its --- data_structures/binary_tree/binary_tree_mirror.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_structures/binary_tree/binary_tree_mirror.py b/data_structures/binary_tree/binary_tree_mirror.py index dc7f657b37c7..cdd56e35d765 100644 --- a/data_structures/binary_tree/binary_tree_mirror.py +++ b/data_structures/binary_tree/binary_tree_mirror.py @@ -1,6 +1,6 @@ """ Problem Description: -Given a binary tree, return it's mirror. +Given a binary tree, return its mirror. """