From 45c01b0955e5ee27dcd6de3073eecd04d9e262e9 Mon Sep 17 00:00:00 2001 From: Ryan Sandridge Date: Fri, 2 Oct 2015 14:32:57 -0400 Subject: [PATCH] Fixing typo. Singular object, not plural. --- docs/writing/structure.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/writing/structure.rst b/docs/writing/structure.rst index 98be4bf..f99c53e 100644 --- a/docs/writing/structure.rst +++ b/docs/writing/structure.rst @@ -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.