Rafferty97 opened a new issue, #11692: URL: https://github.com/apache/datafusion/issues/11692
## Summary Some items defined within macros use macro tokens like `$UDF` within their doc comments, which render as that literal string in cargo documentation, which is confusing and looks a little broken. Here's an example: https://docs.rs/datafusion/latest/datafusion/functions/math/fn.cot.html ## Proposal Use a combination of `#[doc]`, `concat!` and `stringify!` to properly interpolate relevant type names into the generated doc comments. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
