From 3f8a1bbedebbc716773f26245a54dc10533ece72 Mon Sep 17 00:00:00 2001 From: "danish@jedi" Date: Sat, 10 Jun 2023 22:46:00 +0500 Subject: [PATCH] docs:fixed two typos inside Dangers of mutability --- .../adding-interactivity/dangers-of-mutability/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/guides/adding-interactivity/dangers-of-mutability/index.rst b/docs/source/guides/adding-interactivity/dangers-of-mutability/index.rst index fcf817ff4..bcac79e18 100644 --- a/docs/source/guides/adding-interactivity/dangers-of-mutability/index.rst +++ b/docs/source/guides/adding-interactivity/dangers-of-mutability/index.rst @@ -42,8 +42,8 @@ facilitate change: values are equivalent with the ``==`` or ``!=`` operators. Thus far, all the values we've been working with have been immutable. These include -:class:`int`, :class:`float`, :class:`str`, and :class:`bool` values. As a result, we've -have not had to consider the consiquences of mutations. +:class:`int`, :class:`float`, :class:`str`, and :class:`bool` values. As a result, we +have not had to consider the consequences of mutations. .. _Why Avoid Mutation: