Fixed misplaced comment.
diff --git a/Include/abstract.h b/Include/abstract.h
index 3dfac65..f135afa 100644
--- a/Include/abstract.h
+++ b/Include/abstract.h
@@ -268,6 +268,12 @@
      PyAPI_FUNC(PyObject *) PyObject_Call(PyObject *callable_object,
                                           PyObject *args, PyObject *kwargs);
 
+       /*
+     Call a callable Python object, callable_object, with
+     arguments and keywords arguments.  The 'args' argument can not be
+     NULL.
+       */
+
 #ifndef Py_LIMITED_API
     PyAPI_FUNC(PyObject*) _PyStack_AsTuple(
         PyObject **stack,
@@ -349,12 +355,6 @@
                                                     const char *where);
 #endif   /* Py_LIMITED_API */
 
-       /*
-     Call a callable Python object, callable_object, with
-     arguments and keywords arguments.  The 'args' argument can not be
-     NULL.
-       */
-
      PyAPI_FUNC(PyObject *) PyObject_CallObject(PyObject *callable_object,
                                                 PyObject *args);