docs:fixed two typos inside Dangers of mutability (#1038)

Co-authored-by: danish@jedi <danish.mehmood@attech-ltd.com>
Co-authored-by: Ryan Morshead <ryan.morshead@gmail.com>
This commit is contained in:
danish-mehmood 2023-06-10 23:12:37 +05:00 committed by GitHub
parent b1a251684d
commit 81d6343f94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: