dart-windows / win32

Build Win32 apps with Dart!
https://win32.pub
BSD 3-Clause "New" or "Revised" License
734 stars 118 forks source link

Fix dartdoc category references #787

Closed halildurmus closed 7 months ago

halildurmus commented 7 months ago

Fixed the dartdoc category references related to enumerations and structures in the codebase. The correct definitions for these categories are specified as enum and struct (not Enum and Struct) in the dartdoc_options.yaml file: https://github.com/dart-windows/win32/blob/f5f77d16684662f2191657b64f60dac11dac2a28/dartdoc_options.yaml#L63-L68

Additionally, removed the /// @category Interface comments from the generated COM interfaces. Figured it didn't contribute much, especially considering there is no dedicated documentation file for it.

Before: image

After: image