Commit 91135840 authored by Ben Widawsky's avatar Ben Widawsky Committed by Jonathan Corbet
Browse files

kernel-doc: Fix example in Nested structs/unions



Add missing ';' as well as fixes the indent for the first struct.

Signed-off-by: default avatarBen Widawsky <ben.widawsky@intel.com>
Link: https://lore.kernel.org/r/20201207210027.1049346-1-ben.widawsky@intel.com


Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
parent d151a23d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -247,12 +247,12 @@ It is possible to document nested structs and unions, like::
          struct {
            int memb1;
            int memb2;
        }
          };
          struct {
            void *memb3;
            int memb4;
          }
        }
          };
        };
        union {
          struct {
            int memb1;