Fixing typo. Singular object, not plural.

This commit is contained in:
Ryan Sandridge
2015-10-02 14:32:57 -04:00
parent 06fcb71de9
commit 45c01b0955
+1 -1
View File
@@ -213,7 +213,7 @@ can be somewhat misleading and needs to be clarified.
In Python, everything is an object, and can be handled as such. This is what is
meant when we say, for example, that functions are first-class objects.
Functions, classes, strings, and even types are objects in Python: like any
objects, they have a type, they can be passed as function arguments, they may
object, they have a type, they can be passed as function arguments, they may
have methods and properties. In this understanding, Python is an
object-oriented language.