From c0be1851e777ddec4268a80757d32f369e2d7a9c Mon Sep 17 00:00:00 2001
From: Asad <115067155+asadalpha@users.noreply.github.com>
Date: Mon, 16 Jun 2025 15:00:42 +0530
Subject: [PATCH] Update built-in-functions.md
More precise wording
---
docs/cheatsheet/built-in-functions.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/cheatsheet/built-in-functions.md b/docs/cheatsheet/built-in-functions.md
index c4ceda15..f656e1f7 100644
--- a/docs/cheatsheet/built-in-functions.md
+++ b/docs/cheatsheet/built-in-functions.md
@@ -41,7 +41,7 @@ The Python interpreter has a number of functions and types built into it that ar
| frozenset() | Return a new frozenset object. |
| getattr() | Return the value of the named attribute of object. |
| globals() | Return the dictionary implementing the current module namespace. |
-| hasattr() | True if the string is the name of one of the object’s attributes. |
+| hasattr() | Return True if the object has the named attribute. |
| hash() | Return the hash value of the object. |
| help() | Invoke the built-in help system. |
| hex() | Convert an integer number to a lowercase hexadecimal string. |