#12670: Fix struct code after forward declaration on ctypes doc
diff --git a/Doc/library/ctypes.rst b/Doc/library/ctypes.rst
index 33d1f7e..b868a95 100644
--- a/Doc/library/ctypes.rst
+++ b/Doc/library/ctypes.rst
@@ -865,10 +865,10 @@
 
    struct cell; /* forward declaration */
 
-   struct {
+   struct cell {
        char *name;
        struct cell *next;
-   } cell;
+   };
 
 The straightforward translation into ctypes code would be this, but it does not
 work::