Typo and grammar fixes.
diff --git a/Objects/object.c b/Objects/object.c
index e304d2f..1b37a8d 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -1790,9 +1790,9 @@
 static PyObject *
 _dir_object(PyObject *obj)
 {
-	PyObject * result = NULL;
-	PyObject * dirfunc = PyObject_GetAttrString((PyObject*)obj->ob_type,
-						    "__dir__");
+	PyObject *result = NULL;
+	PyObject *dirfunc = PyObject_GetAttrString((PyObject *)obj->ob_type,
+						   "__dir__");
 
 	assert(obj);
 	if (dirfunc == NULL) {