roxygen 1.0.4

Seamlessly document function parameters with rustdoc
Documentation
1
2
3
4
5
6
7
8
9
10
use roxygen::*;

#[roxygen]
/// no function parameters documented
/// and some more
pub fn add(first: i32, second: i32) -> i32 {
    first + second
}

pub fn main() {}