tristanlabelle / swift-winrt

A Swift Projection for WinRT APIs
MIT License
20 stars 2 forks source link

Blank lines around doc comments are messed up #358

Closed tristanlabelle closed 1 month ago

tristanlabelle commented 1 month ago

    public func setValue(_ dp: MicrosoftUIXaml_DependencyProperty?, _ value: WindowsRuntime.IInspectable?) throws {
        try _idependencyObject.setValue(dp, value)
    }
    /// Clears the local value of a dependency property.
    /// - Parameter dp: The DependencyProperty identifier of the property for which to clear the value.

    public func clearValue(_ dp: MicrosoftUIXaml_DependencyProperty?) throws {
        try _idependencyObject.clearValue(dp)
    }