Moved pointers left and added some comments.
diff --git a/python/descriptor_pool.h b/python/descriptor_pool.h
index 77f994f..f43764e 100644
--- a/python/descriptor_pool.h
+++ b/python/descriptor_pool.h
@@ -34,9 +34,9 @@
 
 PyObject* PyUpb_DescriptorPool_GetSerializedPb(PyObject* _self,
                                                const char* filename);
-PyObject* PyUpb_DescriptorPool_Get(const upb_symtab *symtab);
-upb_symtab *PyUpb_DescriptorPool_GetSymtab(PyObject *pool);
-PyObject *PyUpb_DescriptorPool_GetDefaultPool(void);
+PyObject* PyUpb_DescriptorPool_Get(const upb_symtab* symtab);
+upb_symtab* PyUpb_DescriptorPool_GetSymtab(PyObject* pool);
+PyObject* PyUpb_DescriptorPool_GetDefaultPool(void);
 
 bool PyUpb_InitDescriptorPool(PyObject* m);